summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorZach Hilman <zachhilman@gmail.com>2018-10-18 00:27:23 +0200
committerZach Hilman <zachhilman@gmail.com>2018-10-18 00:27:29 +0200
commit9d0fb0f81506429fa83923b04878a5ee2e8ff420 (patch)
tree3bdf4e57a7fa3aeb188838351ffe4f7f6326c047 /src/core
parentregistered_cache: Deduplicate results of ListEntry and ListEntryFilter (diff)
downloadyuzu-9d0fb0f81506429fa83923b04878a5ee2e8ff420.tar
yuzu-9d0fb0f81506429fa83923b04878a5ee2e8ff420.tar.gz
yuzu-9d0fb0f81506429fa83923b04878a5ee2e8ff420.tar.bz2
yuzu-9d0fb0f81506429fa83923b04878a5ee2e8ff420.tar.lz
yuzu-9d0fb0f81506429fa83923b04878a5ee2e8ff420.tar.xz
yuzu-9d0fb0f81506429fa83923b04878a5ee2e8ff420.tar.zst
yuzu-9d0fb0f81506429fa83923b04878a5ee2e8ff420.zip
Diffstat (limited to '')
-rw-r--r--src/core/file_sys/registered_cache.cpp4
-rw-r--r--src/core/file_sys/registered_cache.h1
2 files changed, 5 insertions, 0 deletions
diff --git a/src/core/file_sys/registered_cache.cpp b/src/core/file_sys/registered_cache.cpp
index d1dea5e82..29b100414 100644
--- a/src/core/file_sys/registered_cache.cpp
+++ b/src/core/file_sys/registered_cache.cpp
@@ -35,6 +35,10 @@ bool operator==(const RegisteredCacheEntry& lhs, const RegisteredCacheEntry& rhs
return std::tie(lhs.title_id, lhs.type) == std::tie(rhs.title_id, rhs.type);
}
+bool operator!=(const RegisteredCacheEntry& lhs, const RegisteredCacheEntry& rhs) {
+ return !operator==(lhs, rhs);
+}
+
static bool FollowsTwoDigitDirFormat(std::string_view name) {
static const std::regex two_digit_regex("000000[0-9A-F]{2}", std::regex_constants::ECMAScript |
std::regex_constants::icase);
diff --git a/src/core/file_sys/registered_cache.h b/src/core/file_sys/registered_cache.h
index aeb1c69ba..5beceffb3 100644
--- a/src/core/file_sys/registered_cache.h
+++ b/src/core/file_sys/registered_cache.h
@@ -52,6 +52,7 @@ bool operator<(const RegisteredCacheEntry& lhs, const RegisteredCacheEntry& rhs)
// std unique requires operator== to identify duplicates.
bool operator==(const RegisteredCacheEntry& lhs, const RegisteredCacheEntry& rhs);
+bool operator!=(const RegisteredCacheEntry& lhs, const RegisteredCacheEntry& rhs);
/*
* A class that catalogues NCAs in the registered directory structure.