parent
4ffe9f10a3
commit
72aad2a5e3
src/Memory
|
@ -25,11 +25,11 @@ namespace ArbUt {
|
|||
return *this;
|
||||
}
|
||||
|
||||
inline T* operator->() const noexcept {
|
||||
inline T* operator->() const {
|
||||
AssertNotNull(_raw);
|
||||
return _raw;
|
||||
}
|
||||
inline T operator*() const noexcept {
|
||||
inline T operator*() const {
|
||||
AssertNotNull(_raw);
|
||||
return *_raw;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue