GNOME Bugzilla – Bug 704412
doxygen don't hide private Inherited Members
Last modified: 2013-11-28 12:54:34 UTC
For example: class A { public: void AFoo(); }; class B: private A { public: void BFoo(); private: void BFooPrivate(); }; In result, for class B documentation, I get two section: Public Member Functions void BFoo () Additional Inherited Members Private Member Functions inherited from Sgfx::A void AFoo () BFooPrivate() is hidden becouse EXTRACT_PRIVATE = NO. But AFoo () is not hidden, although it is private! I try to set INLINE_INHERITED_MEMB = YES, but situation is similar: Public Member Functions void BFoo () Private Member Functions void AFoo ()
Confirmed. 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.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.
In version 1.8.5 bug has fixed. Thank you very much!