summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/classes/wrapped.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/godot_cpp/classes/wrapped.hpp')
-rw-r--r--include/godot_cpp/classes/wrapped.hpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/godot_cpp/classes/wrapped.hpp b/include/godot_cpp/classes/wrapped.hpp
index 97f9a6e..7d25931 100644
--- a/include/godot_cpp/classes/wrapped.hpp
+++ b/include/godot_cpp/classes/wrapped.hpp
@@ -95,8 +95,8 @@ protected:
virtual ~Wrapped() {}
public:
- static StringName &get_class_static() {
- static StringName string_name = StringName("Wrapped");
+ static const StringName &get_class_static() {
+ static const StringName string_name = StringName("Wrapped");
return string_name;
}
@@ -228,12 +228,12 @@ public:
initialized = true; \
} \
\
- static ::godot::StringName &get_class_static() { \
- static ::godot::StringName string_name = ::godot::StringName(#m_class); \
+ static const ::godot::StringName &get_class_static() { \
+ static const ::godot::StringName string_name = ::godot::StringName(#m_class); \
return string_name; \
} \
\
- static ::godot::StringName &get_parent_class_static() { \
+ static const ::godot::StringName &get_parent_class_static() { \
return m_inherits::get_class_static(); \
} \
\
@@ -435,12 +435,12 @@ public:
\
static void initialize_class() {} \
\
- static ::godot::StringName &get_class_static() { \
- static ::godot::StringName string_name = ::godot::StringName(#m_alias_for); \
+ static const ::godot::StringName &get_class_static() { \
+ static const ::godot::StringName string_name = ::godot::StringName(#m_alias_for); \
return string_name; \
} \
\
- static ::godot::StringName &get_parent_class_static() { \
+ static const ::godot::StringName &get_parent_class_static() { \
return m_inherits::get_class_static(); \
} \
\