summaryrefslogtreecommitdiffstats
path: root/src/common/typed_address.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-04-03 01:02:04 +0200
committerLiam <byteslice@airmail.cc>2023-04-03 01:02:04 +0200
commita9623d5f550c8fc63f436a40f43bfbf539ac0853 (patch)
treeb6513dfee3b8410ab61d5e9ea799e757f049a1de /src/common/typed_address.h
parentMerge pull request #10005 from liamwhite/kernel-atomics (diff)
downloadyuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.tar
yuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.tar.gz
yuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.tar.bz2
yuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.tar.lz
yuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.tar.xz
yuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.tar.zst
yuzu-a9623d5f550c8fc63f436a40f43bfbf539ac0853.zip
Diffstat (limited to 'src/common/typed_address.h')
-rw-r--r--src/common/typed_address.h5
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;