Merge pull request #1116 from saki7/Ref-allow-non-const-access
Change Ref<T> to allow non const access to ptrpull/1135/head
commit
0d0d5a670b
|
@ -88,26 +88,15 @@ public:
|
||||||
return reference != p_r.reference;
|
return reference != p_r.reference;
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ T *operator->() {
|
_FORCE_INLINE_ T *operator*() const {
|
||||||
return reference;
|
return reference;
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ T *operator*() {
|
_FORCE_INLINE_ T *operator->() const {
|
||||||
return reference;
|
return reference;
|
||||||
}
|
}
|
||||||
|
|
||||||
_FORCE_INLINE_ const T *operator->() const {
|
_FORCE_INLINE_ T *ptr() const {
|
||||||
return reference;
|
|
||||||
}
|
|
||||||
|
|
||||||
_FORCE_INLINE_ const T *ptr() const {
|
|
||||||
return reference;
|
|
||||||
}
|
|
||||||
_FORCE_INLINE_ T *ptr() {
|
|
||||||
return reference;
|
|
||||||
}
|
|
||||||
|
|
||||||
_FORCE_INLINE_ const T *operator*() const {
|
|
||||||
return reference;
|
return reference;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue