summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2015-03-11 17:07:02 (GMT)
committeralbert-github <albert.tests@gmail.com>2015-03-11 17:07:02 (GMT)
commite366acaf0c27ce43ec80a70c0667c27cd5ef9d29 (patch)
treecf3668cfe679532c5eb9e22fac25fa6f4553cb59
parent6913c67ff1f9f20a71333f78cacd87a9e0c7756f (diff)
downloadDoxygen-e366acaf0c27ce43ec80a70c0667c27cd5ef9d29.zip
Doxygen-e366acaf0c27ce43ec80a70c0667c27cd5ef9d29.tar.gz
Doxygen-e366acaf0c27ce43ec80a70c0667c27cd5ef9d29.tar.bz2
Internal doxygen docs gives: warning: Unsupported xml/html tag <...> 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).
-rw-r--r--src/arguments.h2
-rw-r--r--vhdlparser/TokenManager.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/arguments.h b/src/arguments.h
index 778fc32..8b3d211 100644
--- a/src/arguments.h
+++ b/src/arguments.h
@@ -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.
diff --git a/vhdlparser/TokenManager.h b/vhdlparser/TokenManager.h
index 775e43d..68fbe2f 100644
--- a/vhdlparser/TokenManager.h
+++ b/vhdlparser/TokenManager.h
@@ -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;