summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Config/ConfigInfo.cpp
diff options
context:
space:
mode:
authorTilka <tilkax@gmail.com>2024-10-11 18:31:56 +0100
committerGitHub <noreply@github.com>2024-10-11 18:31:56 +0100
commit696ff5baead06ab18e4fa80b70bcb7ce36618474 (patch)
treeeda79c38cbe3b018b91038d642ccc48bcc9f93b8 /Source/Core/Common/Config/ConfigInfo.cpp
parentb5f7a508742671410c44fc6f0e66d0ce789c3b57 (diff)
parente8d5fb89e4465e8ef64920f12e7cb60e82057658 (diff)
Merge pull request #13121 from mitaclaw/synthesize-operator!=
C++20: Synthesize `operator!=` From `operator==`
Diffstat (limited to 'Source/Core/Common/Config/ConfigInfo.cpp')
-rw-r--r--Source/Core/Common/Config/ConfigInfo.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/Core/Common/Config/ConfigInfo.cpp b/Source/Core/Common/Config/ConfigInfo.cpp
index e0546bf8f7..22fc593e34 100644
--- a/Source/Core/Common/Config/ConfigInfo.cpp
+++ b/Source/Core/Common/Config/ConfigInfo.cpp
@@ -15,11 +15,6 @@ bool Location::operator==(const Location& other) const
strcasecmp(key.c_str(), other.key.c_str()) == 0;
}
-bool Location::operator!=(const Location& other) const
-{
- return !(*this == other);
-}
-
bool Location::operator<(const Location& other) const
{
if (system != other.system)