GNOME Bugzilla – Bug 653801
Include guard detection problem
Last modified: 2011-08-14 14:05:27 UTC
File test.h #ifndef PIPPO #define PIPPO // Block A #include "a.h" char a; #endif #ifdef PIPPO // Block B #include "b.h" char b; #endif Block B is omitted. Work around, define 2 times PIPPO: #ifndef PIPPO #define PIPPO #define PIPPO // Block A ... Or include Block B in Block A. In this example I can do, in other cases I can not. Best Regards Luca
Confirmed. Should be fixed in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.7.5. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.