Browse Source

added include guards

Nicolas Winkler 7 years ago
parent
commit
6576a0d73f
1 changed files with 4 additions and 0 deletions
  1. 4 0
      src/Ast.h

+ 4 - 0
src/Ast.h

@@ -19,6 +19,9 @@
 //
 //
 // =============================================================================
 // =============================================================================
 
 
+#ifndef QLOW_AST_H
+#define QLOW_AST_H
+
 #include <string>
 #include <string>
 #include <vector>
 #include <vector>
 #include <memory>
 #include <memory>
@@ -249,5 +252,6 @@ struct qlow::ast::BinaryOperation : public Operation
 };
 };
 
 
 
 
+#endif // QLOW_AST_H