[Doxygen-users] PREDEFINES macro expansion without spaces
Brought to you by:
dimitri
From: Frank M. <fra...@gm...> - 2017-01-25 14:35:03
|
Hi, I define a macro like "FOO(x)=virtual ~x();" to be able to create an empty virtual destructor of a C++ class. However, the expanded text of FOO(bar) is ~ bar (); Doxygen adds spaces before and after macro arguments which is not appreciate in cases like this because "~ bar" is not considered a destructor (at least not from Doxygen itself). Is there some reason to suppress adding these spaces? I'm using Doxygen 1.8.12. Thanks, Frank |