瀏覽代碼

Fix GCC 14 -Wtemplate-id-cdtor warning

As was fixed with godotengine/godot#91208

(cherry picked from commit 7b31f39beaca1a98307402f53d69f3657f3bed86)
George L. Albany 1 年之前
父節點
當前提交
fad74366cd
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/godot_cpp/templates/safe_refcount.hpp

+ 1 - 1
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);
 	}
 };