diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-03-10 16:02:43 -0500 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-03-10 16:02:43 -0500 |
commit | 87f5fb06912d19b3ff3ba80b747fcea3023a1ed5 (patch) | |
tree | c081d3e0b7703194c8162125ee7b138bb2c557d3 /include/godot_cpp/core/defs.hpp | |
parent | cc1217a43cab5ff8377c2f5e53301fda67def95e (diff) | |
download | redot-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.hpp | 2 |
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; |