summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/core/defs.hpp
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-03-10 16:02:43 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-03-10 16:02:43 -0500
commit87f5fb06912d19b3ff3ba80b747fcea3023a1ed5 (patch)
treec081d3e0b7703194c8162125ee7b138bb2c557d3 /include/godot_cpp/core/defs.hpp
parentcc1217a43cab5ff8377c2f5e53301fda67def95e (diff)
downloadredot-cpp-87f5fb06912d19b3ff3ba80b747fcea3023a1ed5.tar.gz
Enforce template syntax `typename` over `class`
Diffstat (limited to 'include/godot_cpp/core/defs.hpp')
-rw-r--r--include/godot_cpp/core/defs.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/godot_cpp/core/defs.hpp b/include/godot_cpp/core/defs.hpp
index c03db50..16812c2 100644
--- a/include/godot_cpp/core/defs.hpp
+++ b/include/godot_cpp/core/defs.hpp
@@ -108,7 +108,7 @@ typedef float real_t;
// Generic swap template.
#ifndef SWAP
#define SWAP(m_x, m_y) __swap_tmpl((m_x), (m_y))
-template <class T>
+template <typename T>
inline void __swap_tmpl(T &x, T &y) {
T aux = x;
x = y;