diff options
Diffstat (limited to 'include/godot_cpp/variant/array_helpers.hpp')
-rw-r--r-- | include/godot_cpp/variant/array_helpers.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/godot_cpp/variant/array_helpers.hpp b/include/godot_cpp/variant/array_helpers.hpp index d6d4368..3d948aa 100644 --- a/include/godot_cpp/variant/array_helpers.hpp +++ b/include/godot_cpp/variant/array_helpers.hpp @@ -28,6 +28,9 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /**************************************************************************/ +#ifndef GODOT_ARRAY_HELPERS_HPP +#define GODOT_ARRAY_HELPERS_HPP + namespace godot { namespace helpers { template <typename T, typename ValueT> @@ -48,3 +51,5 @@ T append_all(T appendable) { } } // namespace helpers } // namespace godot + +#endif // GODOT_ARRAY_HELPERS_HPP |