diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/filedef.h | 2 |
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; |