summaryrefslogtreecommitdiffstats
path: root/src/condparser.cpp
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-12-02 13:23:25 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-12-02 13:23:25 (GMT)
commitef06c8d14c7889e723331601ac847cc481966f5c (patch)
treef95298a5b676b41d3bdf72f2c17f7765b5cb7948 /src/condparser.cpp
parent9b14bf58c30a02ef19abebec280568532dc58ed4 (diff)
downloadDoxygen-ef06c8d14c7889e723331601ac847cc481966f5c.zip
Doxygen-ef06c8d14c7889e723331601ac847cc481966f5c.tar.gz
Doxygen-ef06c8d14c7889e723331601ac847cc481966f5c.tar.bz2
Coverity uninitialized
Fixing a number of uninitialized variables based on the coverity output of November 30, 2019
Diffstat (limited to 'src/condparser.cpp')
-rw-r--r--src/condparser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/condparser.cpp b/src/condparser.cpp
index 74e26bc..9d7ac45 100644
--- a/src/condparser.cpp
+++ b/src/condparser.cpp
@@ -257,7 +257,7 @@ bool CondParser::parseLevel3()
bool CondParser::parseVar()
{
- bool ans = 0;
+ bool ans = false;
switch (m_tokenType)
{
case VARIABLE: