From 1672dbd5f8129dd44f0399bc315b9d46bcf8acb6 Mon Sep 17 00:00:00 2001 From: Sara Date: Fri, 31 May 2024 21:25:34 +0200 Subject: [PATCH] fix: util_functions now uses utils namespace --- util_functions.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util_functions.hpp b/util_functions.hpp index ac88df4..fd67177 100644 --- a/util_functions.hpp +++ b/util_functions.hpp @@ -4,6 +4,7 @@ #include #include +namespace utils { template godot::Dictionary hashmap_to_dictionary(godot::HashMap const &map) { godot::Dictionary dict{}; @@ -20,5 +21,6 @@ godot::HashMap dictionary_to_hashmap(godot::Dictionary const &dict) { map.insert(keys[i], dict[keys[i]]); return map; } +} #endif // !UTILS_FUNCTIONS_HPP