Fixed dereference operators being noexcept.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
4ffe9f10a3
commit
72aad2a5e3
|
@ -25,11 +25,11 @@ namespace ArbUt {
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
inline T* operator->() const noexcept {
|
inline T* operator->() const {
|
||||||
AssertNotNull(_raw);
|
AssertNotNull(_raw);
|
||||||
return _raw;
|
return _raw;
|
||||||
}
|
}
|
||||||
inline T operator*() const noexcept {
|
inline T operator*() const {
|
||||||
AssertNotNull(_raw);
|
AssertNotNull(_raw);
|
||||||
return *_raw;
|
return *_raw;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue