summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/classes
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2023-09-06 19:32:55 +0200
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2023-09-06 19:33:03 +0200
commitf651df5e7a74f4ee357b4db41880b31535e660a8 (patch)
tree4813766da099a165d806a9c969694338e094ee88 /include/godot_cpp/classes
parent0db95a92a68b123b29a9a18c6eb3f99a0dae2642 (diff)
downloadredot-cpp-f651df5e7a74f4ee357b4db41880b31535e660a8.tar.gz
Ensure `const` correctness for wrappers
Diffstat (limited to 'include/godot_cpp/classes')
-rw-r--r--include/godot_cpp/classes/wrapped.hpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/godot_cpp/classes/wrapped.hpp b/include/godot_cpp/classes/wrapped.hpp
index 222b676..aa2c9fc 100644
--- a/include/godot_cpp/classes/wrapped.hpp
+++ b/include/godot_cpp/classes/wrapped.hpp
@@ -142,16 +142,16 @@ protected:
return (void(::godot::Wrapped::*)(::godot::List<::godot::PropertyInfo> * p_list) const) & m_class::_get_property_list; \
} \
\
- static bool (::godot::Wrapped::*_get_property_can_revert())(const ::godot::StringName &p_name) { \
- return (bool(::godot::Wrapped::*)(const ::godot::StringName &p_name)) & m_class::_property_can_revert; \
+ static bool (::godot::Wrapped::*_get_property_can_revert())(const ::godot::StringName &p_name) const { \
+ return (bool(::godot::Wrapped::*)(const ::godot::StringName &p_name) const) & m_class::_property_can_revert; \
} \
\
- static bool (::godot::Wrapped::*_get_property_get_revert())(const ::godot::StringName &p_name, ::godot::Variant &) { \
- return (bool(::godot::Wrapped::*)(const ::godot::StringName &p_name, ::godot::Variant &)) & m_class::_property_get_revert; \
+ static bool (::godot::Wrapped::*_get_property_get_revert())(const ::godot::StringName &p_name, ::godot::Variant &) const { \
+ return (bool(::godot::Wrapped::*)(const ::godot::StringName &p_name, ::godot::Variant &) const) & m_class::_property_get_revert; \
} \
\
- static ::godot::String (::godot::Wrapped::*_get_to_string())() { \
- return (::godot::String(::godot::Wrapped::*)()) & m_class::_to_string; \
+ static ::godot::String (::godot::Wrapped::*_get_to_string())() const { \
+ return (::godot::String(::godot::Wrapped::*)() const) & m_class::_to_string; \
} \
\
template <class T, class B> \
@@ -337,15 +337,15 @@ protected:
return nullptr; \
} \
\
- static bool (Wrapped::*_get_property_can_revert())(const ::godot::StringName &p_name) { \
+ static bool (Wrapped::*_get_property_can_revert())(const ::godot::StringName &p_name) const { \
return nullptr; \
} \
\
- static bool (Wrapped::*_get_property_get_revert())(const ::godot::StringName &p_name, Variant &) { \
+ static bool (Wrapped::*_get_property_get_revert())(const ::godot::StringName &p_name, Variant &) const { \
return nullptr; \
} \
\
- static String (Wrapped::*_get_to_string())() { \
+ static String (Wrapped::*_get_to_string())() const { \
return nullptr; \
} \
\