Skip to content

Commit

Permalink
Internal doxygen docs gives: warning: Unsupported xml/html tag <...> …
Browse files Browse the repository at this point in the history
…found

When generating the doxygen internal documentation we get the warning about Unsupported xml/html tag. This patch fixes this problem.
(TokenManager.h is said to be generated code but original source is not found).
  • Loading branch information
albert-github committed Mar 11, 2015
1 parent 6913c67 commit e366aca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/arguments.h
Expand Up @@ -70,7 +70,7 @@ struct Argument
QCString array; /*!< Argument's array specifier (may be empty) */
QCString defval; /*!< Argument's default value (may be empty) */
QCString docs; /*!< Argument's documentation (may be empty) */
QCString typeConstraint; /*!< Used for Java generics: <T extends C> */
QCString typeConstraint; /*!< Used for Java generics: \<T extends C\> */
};

/*! \brief This class represents an function or template argument list.
Expand Down
2 changes: 1 addition & 1 deletion vhdlparser/TokenManager.h
Expand Up @@ -16,7 +16,7 @@ namespace parser {
class TokenManager {
public:
/** This gets the next token from the input stream.
* A token of kind 0 (<EOF>) should be returned on EOF.
* A token of kind 0 (\<EOF\>) should be returned on EOF.
*/
virtual ~TokenManager() { }
virtual Token *getNextToken() = 0;
Expand Down

0 comments on commit e366aca

Please sign in to comment.