Fix GCC 14 -Wtemplate-id-cdtor warning

As was fixed with godotengine/godot#91208
pull/1561/head
George L. Albany 2024-08-25 07:55:58 +00:00 committed by GitHub
parent 19c83a8837
commit 7b31f39bea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}
};