GNOME Bugzilla – Bug 733451
volatile declaration on member functions is not handled as xml attribute
Last modified: 2014-08-28 16:17:08 UTC
If I have a class with: class MyClass { public: /*! \return If class is true. */ bool is_true() volatile; }; Then the 'volatile' part is not converted to an xml attribute for the resulting 'memberdef' for 'is_true' in the xml output. It does appear in the 'argsstring' property for the 'memberdef'. This might be deliberate but I'm not sure why. We currently have a work around for it using the argsstring for the Breathe project. Kind regards, Michael
My confusion is partly because the 'xsd' for the xml output describe the 'memberdef' has having a 'volatile' DoxBool attribute.
Confirmed, the attribute should have been present. Should be fixed in the next GIT update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.8. 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 (preferrably in the form of a self-contained example).
I can confirm that this is fixed from testing a build from the 1.8.8 source bundle. Thank you for the swift fix and for the whole doxygen project!