summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/classes
diff options
context:
space:
mode:
Diffstat (limited to 'include/godot_cpp/classes')
-rw-r--r--include/godot_cpp/classes/ref.hpp17
1 files changed, 3 insertions, 14 deletions
diff --git a/include/godot_cpp/classes/ref.hpp b/include/godot_cpp/classes/ref.hpp
index 301f847..90d85e5 100644
--- a/include/godot_cpp/classes/ref.hpp
+++ b/include/godot_cpp/classes/ref.hpp
@@ -88,26 +88,15 @@ public:
return reference != p_r.reference;
}
- _FORCE_INLINE_ T *operator->() {
+ _FORCE_INLINE_ T *operator*() const {
return reference;
}
- _FORCE_INLINE_ T *operator*() {
+ _FORCE_INLINE_ T *operator->() const {
return reference;
}
- _FORCE_INLINE_ const T *operator->() const {
- return reference;
- }
-
- _FORCE_INLINE_ const T *ptr() const {
- return reference;
- }
- _FORCE_INLINE_ T *ptr() {
- return reference;
- }
-
- _FORCE_INLINE_ const T *operator*() const {
+ _FORCE_INLINE_ T *ptr() const {
return reference;
}