summaryrefslogtreecommitdiffstats
path: root/src/video_core/shader_cache.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-07-14 21:28:11 +0200
committerLioncash <mathew1800@gmail.com>2020-07-14 21:49:15 +0200
commit969100d41a9bd20f525d69d1791b08106f722468 (patch)
treed698d1562c0ccc702ce0762a89aa2aae91ccf7b9 /src/video_core/shader_cache.h
parentMerge pull request #4317 from lioncash/boost (diff)
downloadyuzu-969100d41a9bd20f525d69d1791b08106f722468.tar
yuzu-969100d41a9bd20f525d69d1791b08106f722468.tar.gz
yuzu-969100d41a9bd20f525d69d1791b08106f722468.tar.bz2
yuzu-969100d41a9bd20f525d69d1791b08106f722468.tar.lz
yuzu-969100d41a9bd20f525d69d1791b08106f722468.tar.xz
yuzu-969100d41a9bd20f525d69d1791b08106f722468.tar.zst
yuzu-969100d41a9bd20f525d69d1791b08106f722468.zip
Diffstat (limited to 'src/video_core/shader_cache.h')
-rw-r--r--src/video_core/shader_cache.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/shader_cache.h b/src/video_core/shader_cache.h
index b7608fc7b..015a789d6 100644
--- a/src/video_core/shader_cache.h
+++ b/src/video_core/shader_cache.h
@@ -209,11 +209,11 @@ private:
}
// Remove them from the cache
- const auto is_removed = [&removed_shaders](std::unique_ptr<T>& shader) {
+ const auto is_removed = [&removed_shaders](const std::unique_ptr<T>& shader) {
return std::find(removed_shaders.begin(), removed_shaders.end(), shader.get()) !=
removed_shaders.end();
};
- storage.erase(std::remove_if(storage.begin(), storage.end(), is_removed), storage.end());
+ std::erase_if(storage, is_removed);
}
/// @brief Creates a new entry in the lookup cache and returns its pointer