summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/TextureCacheBase.cpp
diff options
context:
space:
mode:
authorJun Su <howard0su@gmail.com>2020-03-23 16:20:40 +0800
committerJun Su <howard0su@gmail.com>2020-03-24 20:14:10 +0800
commitda223a2271289cca418eedb9d404c2e1c92e5e9d (patch)
tree1fcb864a51d58f71deb2b6bc8b3f8e1b48c4dfcd /Source/Core/VideoCommon/TextureCacheBase.cpp
parent62707986b7c5c70f34767e70ddf06baf0b14a7c7 (diff)
Cleanup warnings of -Wunused-lambda-capture
Remove unused lambda captures.
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp')
-rw-r--r--Source/Core/VideoCommon/TextureCacheBase.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp
index c68ed147c2..5a298273d3 100644
--- a/Source/Core/VideoCommon/TextureCacheBase.cpp
+++ b/Source/Core/VideoCommon/TextureCacheBase.cpp
@@ -523,7 +523,7 @@ void TextureCacheBase::DoSaveState(PointerWrap& p)
// Storing them would duplicate data in the save state file, adding to decompression time.
return entry->IsCopy();
};
- auto AddCacheEntryToMap = [&entry_map, &entries_to_save, &p](TCacheEntry* entry) -> u32 {
+ auto AddCacheEntryToMap = [&entry_map, &entries_to_save](TCacheEntry* entry) -> u32 {
auto iter = entry_map.find(entry);
if (iter != entry_map.end())
return iter->second;