[Bug default/26315] abidiff segfaults from 9a113ce but works in 1.7

sourceware at sgoth dot de sourceware-bugzilla@sourceware.org
Wed Jul 29 18:23:40 GMT 2020


https://sourceware.org/bugzilla/show_bug.cgi?id=26315

--- Comment #4 from Sebastian Goth <sourceware at sgoth dot de> ---
Regarding the forward declared enum:

The layout is:

A.h:
```
enum class Foobar;
```

Abstract.h:
```
#include "A.h"
enum class Foobar {
  A, B, C;
};

class Abstract {

public:
   void pure() = 0;
   Foobar somefunc();
private:
   Foobar member;
};
```

All that is contained in the library.
But there is no implementation of Abstract inside the lib!

-- 
You are receiving this mail because:
You are on the CC list for the bug.


More information about the Libabigail mailing list