diff options
Diffstat (limited to 'cpp/src/FreezeScript/Print.h')
-rw-r--r-- | cpp/src/FreezeScript/Print.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cpp/src/FreezeScript/Print.h b/cpp/src/FreezeScript/Print.h index ce548612c77..6d6d57efbd1 100644 --- a/cpp/src/FreezeScript/Print.h +++ b/cpp/src/FreezeScript/Print.h @@ -7,7 +7,8 @@ // // ********************************************************************** -#pragma once +#ifndef FREEZE_SCRIPT_PRINT_H +#define FREEZE_SCRIPT_PRINT_H #include <FreezeScript/Data.h> @@ -17,3 +18,5 @@ namespace FreezeScript void printData(const DataPtr&, std::ostream&); } // End of namespace FreezeScript + +#endif |