diff options
Diffstat (limited to 'cpp/src/FreezeScript/Parser.h')
-rw-r--r-- | cpp/src/FreezeScript/Parser.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/FreezeScript/Parser.h b/cpp/src/FreezeScript/Parser.h index e5c79800fb8..83e2a74fce2 100644 --- a/cpp/src/FreezeScript/Parser.h +++ b/cpp/src/FreezeScript/Parser.h @@ -7,7 +7,8 @@ // // ********************************************************************** -#pragma once +#ifndef FREEZE_SCRIPT_PARSER_H +#define FREEZE_SCRIPT_PARSER_H #include <FreezeScript/Data.h> @@ -246,3 +247,5 @@ private: } // End of namespace FreezeScript std::ostream& operator<<(std::ostream&, const FreezeScript::EntityNodePtr&); + +#endif |