Fixed dereference operators being noexcept.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
4ffe9f10a3
commit
72aad2a5e3
@ -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…
x
Reference in New Issue
Block a user