diff options
Diffstat (limited to 'cpp/src/FreezeScript/Functions.h')
-rw-r--r-- | cpp/src/FreezeScript/Functions.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/FreezeScript/Functions.h b/cpp/src/FreezeScript/Functions.h index c1194051e3b..d3b63146ba7 100644 --- a/cpp/src/FreezeScript/Functions.h +++ b/cpp/src/FreezeScript/Functions.h @@ -7,7 +7,8 @@ // // ********************************************************************** -#pragma once +#ifndef FREEZE_SCRIPT_FUNCTIONS_H +#define FREEZE_SCRIPT_FUNCTIONS_H #include <FreezeScript/Data.h> @@ -21,3 +22,5 @@ bool invokeMemberFunction(const std::string&, const DataPtr&, const DataList&, D const ErrorReporterPtr&); } + +#endif |