2
0
Эх сурвалжийг харах

Fix forgotten not operator

Adam Scott 2 жил өмнө
parent
commit
f5c8e5190f

+ 1 - 1
include/godot_cpp/templates/cowdata.hpp

@@ -213,7 +213,7 @@ void CowData<T>::_unref(void *p_data) {
 	}
 	}
 
 
 	// clean up
 	// clean up
-	if (std::is_trivially_destructible<T>::value) {
+	if (!std::is_trivially_destructible<T>::value) {
 		uint32_t *count = _get_size();
 		uint32_t *count = _get_size();
 		T *data = (T *)(count + 1);
 		T *data = (T *)(count + 1);