GNOME Bugzilla – Bug 153379
recognizing end-of-line comments
Last modified: 2008-11-08 16:13:21 UTC
[forwarded from http://bugs.debian.org/195991] Package: doxygen Version: 1.3-rc3-1 Severity: wishlist I noticed that doxygen doesn't recognize the intention of comments like struct foo { private: int m_var; /// Member variable typedef int foo_t; }; Okay, so far so good. The member variable is private and I don't really need it to be in the generated documentation. What I found more annoying was that in the example above, I did get something like this in the output HTML: Typedefs typedef int foo_t; Member variable Perhaps it would make more sense to either: 1. Recognize end-of-line comments, or 2. Ignore comments separated by one or more lines from the following declaration.
Considering that doxygen supports ///< exactly for this case, is this really a bug? (I'm also adding the original reporter of the Debian bug to the CC)
I agree that this is not a bug.