summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/classes
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2023-05-24 21:17:25 -0500
committerGitHub <noreply@github.com>2023-05-24 21:17:25 -0500
commit0d0d5a670be24389c451bd58b1e6b78dbdf8ca31 (patch)
treed78cedc633ca2a2a46ed82039cd723f1a9396957 /include/godot_cpp/classes
parent8052f818b47c163d3e0a19b13282d909ebfa55f2 (diff)
parent48635729b990b6a84e2e2bb7334b2b4ca2c28ee8 (diff)
downloadredot-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.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 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;
}