diff options
author | George L. Albany <Megacake1234@gmail.com> | 2024-08-25 07:55:58 +0000 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2024-09-03 16:35:31 -0500 |
commit | 842a7f621f464797aab474e56772338da255d85c (patch) | |
tree | 2a560f4d9b68c39459027a98619b6c3b45fae99d | |
parent | 37d255af6c7a34bc30d772f86dc04903857bc18b (diff) | |
download | redot-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.hpp | 2 |
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); } }; |