Skip to content

Commit aac0164

Browse files
authored
Merge pull request godotengine#1561 from Spartan322/gcc-14-Wtemplate-id-cdtor-warning
Fix GCC 14 -Wtemplate-id-cdtor warning
2 parents fd8f196 + 7b31f39 commit aac0164

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/godot_cpp/templates/safe_refcount.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class SafeNumeric {
132132
}
133133
}
134134

135-
_ALWAYS_INLINE_ explicit SafeNumeric<T>(T p_value = static_cast<T>(0)) {
135+
_ALWAYS_INLINE_ explicit SafeNumeric(T p_value = static_cast<T>(0)) {
136136
set(p_value);
137137
}
138138
};

0 commit comments

Comments
 (0)