diff options
| author | David Snopek <dsnopek@gmail.com> | 2024-10-29 13:09:45 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-29 13:09:45 -0500 |
| commit | 7fca5458854c30fed862609cf516910e432508c1 (patch) | |
| tree | 957304f3c4004fd947c5a83c60273a40c4916f5f /include/godot_cpp | |
| parent | dfdc0474597a5c7918a3101529f0e2c69cf18d8b (diff) | |
| parent | 536ea8561e00b8d6183ddc522476dd232c1d3bef (diff) | |
| download | redot-cpp-7fca5458854c30fed862609cf516910e432508c1.tar.gz | |
Merge pull request #1574 from dsnopek/unicode-class-names
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 a0bcec7..12198b5 100644 --- a/include/godot_cpp/classes/wrapped.hpp +++ b/include/godot_cpp/classes/wrapped.hpp @@ -245,7 +245,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; \ } \ \ |
