Skip to content

Commit

Permalink
IncludeInfo class had uninitialized member variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Sep 13, 2015
1 parent ded4e9a commit 76a9892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/filedef.h
Expand Up @@ -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;
Expand Down

0 comments on commit 76a9892

Please sign in to comment.