[Doxygen-users] Sealed classes in C++ generating with name "sealed"
Brought to you by:
dimitri
From: Michael L. <lan...@gm...> - 2014-04-09 16:46:45
|
Hey all, I'm running version 1.8.6, and I've noticed that classes marked 'sealed' have the name 'sealed' instead of their actual name used, when generating C++ documentation. This is odd, since sealed methods don't have the same issue. For instance: public ref class MySealed sealed { public: MySealed() { } virtual void SealedMethod() sealed {} }; Generates the "class" 'sealed' instead of MySealed, but that class has the SealedMethod method. I've submitted a bug to the bugzilla DB (725183) but so far it's been untouched, but I'm hoping you'll tell me it's a PEBKAC issue and there's a hidden configuration option I missed that fixes the problem. If not, has anyone else seen this (and if so do you have a workaround)? Thanks, Mike |