GNOME Bugzilla – Bug 674856
\endinternal issues warnings
Last modified: 2013-05-19 13:23:50 UTC
The use of \endinternal issues warnings like /home/dateien/projekte/agentxcpp/src/oid.hpp:119: warning: found \endinternal without matching \internal Note that the command \endinternal works as expected, except of the warning.
I'm seeing this all the time too. Here's an example standalone .md file which demonstrates it: My Section Header ================= This is common text. @internal This is internal-only text. @endinternal This is common text too. <prompt> doxygen doxygen-cfg /Users/spucci/doxy/endinternalbug/mainpage.md:7: warning: found \endinternal without matching \internal <prompt> spucci%
Spotted this on 1.7, and then on 1.8.2. If INTERNAL_DOCS=YES then the lex script does not enter the SKIP_INTERNAL state and thus gives a warning on the \endinternal command. Quick solution would be to add the same if( INTERNAL_DOCS = NO) like at the \internal command mark in the script. Downside would be that if INTERNAL_DOCS=YES then it would just ignore the \endinternal and would not warn about actual mismatches.
Created attachment 232860 [details] [review] PATCH: Suppress \endinternal message This patch suppresses the "warning: found \endinternal without matching \internal" in case INTERNAL_DOCS is set to YES.
Confirmed. Should be fixed in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.4. 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.
I confirm that the problem is solved in doxygen 1.8.4. Thank you!