diff options
author | David Snopek <dsnopek@gmail.com> | 2023-05-24 21:17:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-24 21:17:25 -0500 |
commit | 0d0d5a670be24389c451bd58b1e6b78dbdf8ca31 (patch) | |
tree | d78cedc633ca2a2a46ed82039cd723f1a9396957 /include/godot_cpp/classes | |
parent | 8052f818b47c163d3e0a19b13282d909ebfa55f2 (diff) | |
parent | 48635729b990b6a84e2e2bb7334b2b4ca2c28ee8 (diff) | |
download | redot-cpp-0d0d5a670be24389c451bd58b1e6b78dbdf8ca31.tar.gz |
Merge pull request #1116 from saki7/Ref-allow-non-const-access
Change Ref<T> to allow non const access to ptr
Diffstat (limited to 'include/godot_cpp/classes')
-rw-r--r-- | include/godot_cpp/classes/ref.hpp | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/include/godot_cpp/classes/ref.hpp b/include/godot_cpp/classes/ref.hpp index 5c10e59..b80227d 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; } |