summaryrefslogtreecommitdiffstats
path: root/src/outputlist.h
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-03-30 12:20:36 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-03-30 12:20:36 (GMT)
commitbee75b8faad42e45dea619bae8e61b264448184b (patch)
tree383d8156534d5f3123c60fbadb704b32a1a78509 /src/outputlist.h
parentfe8a55092e6f890792f6ff8aeecfc1dce86160a0 (diff)
downloadDoxygen-bee75b8faad42e45dea619bae8e61b264448184b.zip
Doxygen-bee75b8faad42e45dea619bae8e61b264448184b.tar.gz
Doxygen-bee75b8faad42e45dea619bae8e61b264448184b.tar.bz2
Bug 685714 - false positives reporting parameters or return value not being documented
- removed memory leak on variable root - return values of generateDoc and parseText are nowhere used, replaced bool function with void function.
Diffstat (limited to 'src/outputlist.h')
-rw-r--r--src/outputlist.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/outputlist.h b/src/outputlist.h
index 5fd8017..bbab809 100644
--- a/src/outputlist.h
+++ b/src/outputlist.h
@@ -74,12 +74,12 @@ class OutputList : public OutputDocInterface
// OutputDocInterface implementation
//////////////////////////////////////////////////
- bool generateDoc(const char *fileName,int startLine,
+ void generateDoc(const char *fileName,int startLine,
Definition *ctx,MemberDef *md,const QCString &docStr,
bool indexWords,bool isExample,const char *exampleName=0,
bool singleLine=FALSE,bool linkFromIndex=FALSE);
void writeDoc(DocRoot *root,Definition *ctx,MemberDef *md);
- bool parseText(const QCString &textStr);
+ void parseText(const QCString &textStr);
void startIndexSection(IndexSections is)