diff options
Diffstat (limited to 'include/godot_cpp/variant/char_string.hpp')
-rw-r--r-- | include/godot_cpp/variant/char_string.hpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/godot_cpp/variant/char_string.hpp b/include/godot_cpp/variant/char_string.hpp index 993d046..991c039 100644 --- a/include/godot_cpp/variant/char_string.hpp +++ b/include/godot_cpp/variant/char_string.hpp @@ -38,12 +38,12 @@ namespace godot { -template <class T> +template <typename T> class CharStringT; -template <class T> +template <typename T> class CharProxy { - template <class TS> + template <typename TS> friend class CharStringT; const int64_t _index; @@ -80,7 +80,7 @@ public: } }; -template <class T> +template <typename T> class CharStringT { friend class String; |