diff options
| author | Liam <byteslice@airmail.cc> | 2023-04-02 19:02:04 -0400 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2023-04-02 19:02:04 -0400 |
| commit | a9623d5f550c8fc63f436a40f43bfbf539ac0853 (patch) | |
| tree | b6513dfee3b8410ab61d5e9ea799e757f049a1de /src/common/typed_address.h | |
| parent | 0730dc6c44d8b589efeb80d974650c72ba44c4f7 (diff) | |
general: fixes for gcc 13
Diffstat (limited to 'src/common/typed_address.h')
| -rw-r--r-- | src/common/typed_address.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/typed_address.h b/src/common/typed_address.h index cf7bbeae1..64f4a07c2 100644 --- a/src/common/typed_address.h +++ b/src/common/typed_address.h @@ -116,7 +116,6 @@ public: // Comparison operators. constexpr bool operator==(const TypedAddress&) const = default; - constexpr bool operator!=(const TypedAddress&) const = default; constexpr auto operator<=>(const TypedAddress&) const = default; // For convenience, also define comparison operators versus uint64_t. @@ -124,10 +123,6 @@ public: return m_address == rhs; } - constexpr inline bool operator!=(uint64_t rhs) const { - return m_address != rhs; - } - // Allow getting the address explicitly, for use in accessors. constexpr inline uint64_t GetValue() const { return m_address; |
