summaryrefslogtreecommitdiffstats
path: root/src/clangparser.h
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2020-10-01 11:01:26 (GMT)
committeralbert-github <albert.tests@gmail.com>2020-10-01 11:01:26 (GMT)
commita4a7f0a5494c5232c61859dc4e17d0043a31693c (patch)
treeec7b6bec853097b33e3a814d25e12314222e503f /src/clangparser.h
parent02b8dea10813606db4a013799a3e354368d0280f (diff)
downloadDoxygen-a4a7f0a5494c5232c61859dc4e17d0043a31693c.zip
Doxygen-a4a7f0a5494c5232c61859dc4e17d0043a31693c.tar.gz
Doxygen-a4a7f0a5494c5232c61859dc4e17d0043a31693c.tar.bz2
Warning in internal documentation
The internal documentation gives warning: ``` .../src/clangparser.h:33: warning: argument 'fileName' of command @param is not found in the argument list of ClangTUParser::switchToFile(FileDef *fd) .../src/clangparser.h:35: warning: The following parameter of ClangTUParser::switchToFile(FileDef *fd) is not documented: parameter 'fd' ``` this is corrected. (Note: warning regarding TokenManager is an javaCC upstream problem and corrected in their master).
Diffstat (limited to 'src/clangparser.h')
-rw-r--r--src/clangparser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clangparser.h b/src/clangparser.h
index 8ee1bdb..f948c33 100644
--- a/src/clangparser.h
+++ b/src/clangparser.h
@@ -30,7 +30,7 @@ class ClangTUParser
void parse();
/** Switches to another file within the translation unit started with start().
- * @param[in] fileName The name of the file to switch to.
+ * @param[in] fd The file definition with the name of the file to switch to.
*/
void switchToFile(FileDef *fd);