summaryrefslogtreecommitdiffstats
path: root/src/xmlscanner.h
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-11-09 18:46:38 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-11-09 18:46:38 (GMT)
commitbae74a501c520bc180ea329dbe8d91b1ce81d90e (patch)
treef15323516f2a5fac2dd251d4e19c6c4bdb1a7815 /src/xmlscanner.h
parent28c738d0319bf5de25bcf6aed90234419feded07 (diff)
downloadDoxygen-bae74a501c520bc180ea329dbe8d91b1ce81d90e.zip
Doxygen-bae74a501c520bc180ea329dbe8d91b1ce81d90e.tar.gz
Doxygen-bae74a501c520bc180ea329dbe8d91b1ce81d90e.tar.bz2
Fixed use of uninitialized pointer in preprocessor
Diffstat (limited to 'src/xmlscanner.h')
-rw-r--r--src/xmlscanner.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmlscanner.h b/src/xmlscanner.h
index b54d416..0fe01a7 100644
--- a/src/xmlscanner.h
+++ b/src/xmlscanner.h
@@ -29,7 +29,7 @@ public:
void startTranslationUnit(const char *) {}
void finishTranslationUnit() {}
void parseInput(const char *, const char *, const std::unique_ptr<Entry> &, bool , QStrList &) {}
- bool needsPreprocessing(const QCString &) { return FALSE; }
+ bool needsPreprocessing(const QCString &) const { return FALSE; }
void parseCode(CodeOutputInterface &codeOutIntf,
const char *scopeName,