Fixed dereference operators being noexcept.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-06-26 16:31:33 +02:00
parent 4ffe9f10a3
commit 72aad2a5e3
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 2 additions and 2 deletions

View File

@ -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;
} }