summaryrefslogtreecommitdiffstats
path: root/src/filedef.h
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-09-10 17:04:05 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-09-13 10:02:42 (GMT)
commit76a9892b190efaeb3c764d824bd285ff3d2c57dc (patch)
treee1e5203c67a38c79861831c48e0e65d7c9209b19 /src/filedef.h
parentded4e9a92670d0157cdcc5cbf7a4a1e3193e179a (diff)
downloadDoxygen-76a9892b190efaeb3c764d824bd285ff3d2c57dc.zip
Doxygen-76a9892b190efaeb3c764d824bd285ff3d2c57dc.tar.gz
Doxygen-76a9892b190efaeb3c764d824bd285ff3d2c57dc.tar.bz2
IncludeInfo class had uninitialized member variable
Diffstat (limited to 'src/filedef.h')
-rw-r--r--src/filedef.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filedef.h b/src/filedef.h
index 17a5e60..712128c 100644
--- a/src/filedef.h
+++ b/src/filedef.h
@@ -44,7 +44,7 @@ class FTextStream;
/** Class representing the data associated with a \#include statement. */
struct IncludeInfo
{
- IncludeInfo() { fileDef=0; local=FALSE; indirect=FALSE; }
+ IncludeInfo() : fileDef(0), local(FALSE), imported(FALSE), indirect(FALSE) {}
~IncludeInfo() {}
FileDef *fileDef;
QCString includeName;