Even more documentation.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-12-11 15:25:24 +01:00
parent d133b0a6fb
commit c4a4aedb04
2 changed files with 2 additions and 4 deletions

View File

@@ -79,6 +79,7 @@ namespace ArbUt {
return BorrowedPtr<TCast>(cast);
}
/// @brief Implicit cast to retrieve raw pointer.
inline operator T*() const noexcept { return _raw; }
};
}

View File

@@ -57,10 +57,7 @@ namespace ArbUt {
inline bool operator!=(T* rhs) const noexcept { return _raw == rhs; }
/// @brief Implicit cast to retrieve raw pointer.
inline operator T*() const noexcept {
AssertNotNull(_raw);
return _raw;
}
inline operator T*() const noexcept { return _raw; }
};
}