diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-26 11:40:59 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-26 11:41:09 +0200 |
commit | a8ff47b6d6b5070b8247dfed85135b71a4a07cdf (patch) | |
tree | ad5a33f876cb533dbfa299895e1c909ea2ffa6e5 /core/templates | |
parent | 86bf8354a06ab7b23a0ff6a81b48fd015e92ac94 (diff) | |
download | redot-engine-a8ff47b6d6b5070b8247dfed85135b71a4a07cdf.tar.gz |
Fix GCC 14 -Wtemplate-id-cdtor warnings
Fixes #91206.
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/ring_buffer.h | 4 | ||||
-rw-r--r-- | core/templates/safe_refcount.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/core/templates/ring_buffer.h b/core/templates/ring_buffer.h index 54148a59bf..f5161cefa4 100644 --- a/core/templates/ring_buffer.h +++ b/core/templates/ring_buffer.h @@ -211,10 +211,10 @@ public: size_mask = mask; } - RingBuffer<T>(int p_power = 0) { + RingBuffer(int p_power = 0) { resize(p_power); } - ~RingBuffer<T>() {} + ~RingBuffer() {} }; #endif // RING_BUFFER_H diff --git a/core/templates/safe_refcount.h b/core/templates/safe_refcount.h index 637b068da9..16b605eaff 100644 --- a/core/templates/safe_refcount.h +++ b/core/templates/safe_refcount.h @@ -146,7 +146,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); } }; |