소스 검색

Change Ref<T> to allow non const access to ptr

Nana Sakisaka 2 년 전
부모
커밋
48635729b9
1개의 변경된 파일3개의 추가작업 그리고 14개의 파일을 삭제
  1. 3 14
      include/godot_cpp/classes/ref.hpp

+ 3 - 14
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;
 	}