diff options
author | David Snopek <dsnopek@gmail.com> | 2024-09-06 17:24:07 -0500 |
---|---|---|
committer | David Snopek <dsnopek@gmail.com> | 2024-09-18 13:24:56 -0500 |
commit | 536ea8561e00b8d6183ddc522476dd232c1d3bef (patch) | |
tree | 7f701d5b287b2eafe491b18a237805474342174f /include/godot_cpp | |
parent | d47758910428242169ebe59329b449edf16036e0 (diff) | |
download | redot-cpp-536ea8561e00b8d6183ddc522476dd232c1d3bef.tar.gz |
Allow unicode class names
Diffstat (limited to 'include/godot_cpp')
-rw-r--r-- | include/godot_cpp/classes/wrapped.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/godot_cpp/classes/wrapped.hpp b/include/godot_cpp/classes/wrapped.hpp index 0ffd783..3f0d1e2 100644 --- a/include/godot_cpp/classes/wrapped.hpp +++ b/include/godot_cpp/classes/wrapped.hpp @@ -250,7 +250,7 @@ public: } \ \ static const ::godot::StringName &get_class_static() { \ - static const ::godot::StringName string_name = ::godot::StringName(#m_class); \ + static const ::godot::StringName string_name = ::godot::StringName(U## #m_class); \ return string_name; \ } \ \ |