浏览代码

added include guards

Nicolas Winkler 7 年之前
父节点
当前提交
6576a0d73f
共有 1 个文件被更改,包括 4 次插入0 次删除
  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 <vector>
 #include <memory>
@@ -249,5 +252,6 @@ struct qlow::ast::BinaryOperation : public Operation
 };
 
 
+#endif // QLOW_AST_H