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

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
Doxygen-users mailing list
Doxygen-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/doxygen-users

Reply via email to