소스 검색

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