diff options
-rw-r--r-- | CompilerStack.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CompilerStack.h b/CompilerStack.h index 87946a6b..8f77ef68 100644 --- a/CompilerStack.h +++ b/CompilerStack.h @@ -125,7 +125,7 @@ private: std::shared_ptr<Scanner> scanner; std::shared_ptr<SourceUnit> ast; std::string interface; - bool isLibrary; + bool isLibrary = false; void reset() { scanner.reset(); ast.reset(); interface.clear(); isLibrary = false;} }; |