I'm getting a compile time error from a file that includes multiple OGDF headers:
error: redefinition of 'LayoutModule'
class OGDF_EXPORT LayoutModule {
^
/usr/local/include/ogdf/basic/LayoutModule.h:44:19: note: previous definition is here
class OGDF_EXPORT LayoutModule {
My first though was that the head was being included multiple times. However it has
a #ifdef guard on it to prevent this.
I'm using OSX 11.6.4 with OGDFv2022.02
I get the same issue with both the Apple clang and g++
Ay thoughts on possible cause?
thanks
David Duke