summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/classes
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2024-10-29 13:09:45 -0500
committerGitHub <noreply@github.com>2024-10-29 13:09:45 -0500
commit7fca5458854c30fed862609cf516910e432508c1 (patch)
tree957304f3c4004fd947c5a83c60273a40c4916f5f /include/godot_cpp/classes
parentdfdc0474597a5c7918a3101529f0e2c69cf18d8b (diff)
parent536ea8561e00b8d6183ddc522476dd232c1d3bef (diff)
downloadredot-cpp-7fca5458854c30fed862609cf516910e432508c1.tar.gz
Merge pull request #1574 from dsnopek/unicode-class-names
Allow unicode class names
Diffstat (limited to 'include/godot_cpp/classes')
-rw-r--r--include/godot_cpp/classes/wrapped.hpp2
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; \
} \
\