Re: Compiling without warnings issues

PREDEFINED = "REFERENCE_OBJECT=Class (const Class &); \
Class & operator= (const Class &);"

I just realized the above is not quite right… The correct form would be:

PREDEFINED = "REFERENCE_OBJECT(Class)=Class (const Class &); \
Class & operator= (const Class &);"

Regards,

Peter

Would you like to post a relpy?


This post is a reply to:
Re: Compiling without warnings issues
Hi Petr, I'm totally mystified at first because adding the following to one of the test cpp files worked: class TestDummy { public: VALUE_OBJECT (TestDummy) }; class TestDummy2 { REFERENCE_OBJECT (TestDummy2) public: }; class TestDummy3 { STATIC_HELPER (TestDummy3) public: }; Then I though that because Doxygen parses (more...)

No follow-ups yet.