summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorge L. Albany <Megacake1234@gmail.com>2024-08-25 07:55:58 +0000
committerDavid Snopek <dsnopek@gmail.com>2024-09-03 16:35:31 -0500
commit842a7f621f464797aab474e56772338da255d85c (patch)
tree2a560f4d9b68c39459027a98619b6c3b45fae99d
parent37d255af6c7a34bc30d772f86dc04903857bc18b (diff)
downloadredot-cpp-842a7f621f464797aab474e56772338da255d85c.tar.gz
Fix GCC 14 -Wtemplate-id-cdtor warning
As was fixed with godotengine/godot#91208 (cherry picked from commit 7b31f39beaca1a98307402f53d69f3657f3bed86)
-rw-r--r--include/godot_cpp/templates/safe_refcount.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/godot_cpp/templates/safe_refcount.hpp b/include/godot_cpp/templates/safe_refcount.hpp
index 12e6840..98cb04b 100644
--- a/include/godot_cpp/templates/safe_refcount.hpp
+++ b/include/godot_cpp/templates/safe_refcount.hpp
@@ -132,7 +132,7 @@ public:
}
}
- _ALWAYS_INLINE_ explicit SafeNumeric<T>(T p_value = static_cast<T>(0)) {
+ _ALWAYS_INLINE_ explicit SafeNumeric(T p_value = static_cast<T>(0)) {
set(p_value);
}
};