Removes optional downcast to raw pointer from Optional Unique Ptr
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2022-05-14 17:34:37 +02:00
parent 8e35267bb0
commit b9ea517f6e
Signed by: Deukhoofd
GPG Key ID: F63E044490819F6F
1 changed files with 0 additions and 3 deletions

View File

@ -55,9 +55,6 @@ namespace ArbUt {
inline bool operator!=(const OptionalUniquePtr& rhs) const noexcept { return _raw != rhs._raw; }
/// @brief Check equality of pointers
inline bool operator!=(T* nullable rhs) const noexcept { return _raw != rhs; }
/// @brief Implicit cast to retrieve raw pointer.
inline operator T* nullable() const noexcept { return _raw; }
};
}