[Doxygen-users] INLINE_GROUPED_CLASSES breaks generated tag files
Brought to you by:
dimitri
From: Brian L. <lin...@ho...> - 2014-01-20 13:20:15
|
When INLINE_GROUPED_CLASSES is set to YES, it breaks the generated Doxygen tag file. Here's the error I'm getting when trying to bring in the broken tagfile into another project: Reading and parsing tag files Reading tag file `../project1/Doxygen.tag'... C:/Users/bl4703/Documents/subversion/doxygen/project1/Doxygen.tag:11: warning: Unexpected tag `ancho r' found error: Fatal error at line 13 column 10: tag mismatch error: Fatal error at line 13 column 10: error while parsing element error: Fatal error at line 13 column 10: error while parsing content error: Fatal error at line 13 column 10: error while parsing main element Parsing files Here are the files that were used to generate the error: project1/doxygen.cfg: PROJECT_NAME = project1 INLINE_GROUPED_CLASSES = YES GENERATE_TAGFILE = Doxygen.tag INPUT = source.h project1/source.h: /*! @defgroup Project1Group Project 1 */ //! Project1 /*! @ingroup Project1Group */ class Project1 { }; project2/doxygen.cfg: PROJECT_NAME = project2 INPUT = source.h TAGFILES = ../project1/Doxygen.tag project2/source.h: /*! @defgroup Project2Group */ //! Project2 /*! @ingroup Project2Group */ class Project2 : public Project1 { }; |