diff options
author | Lioncash <mathew1800@gmail.com> | 2020-07-14 21:28:11 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-07-14 21:49:15 +0200 |
commit | 969100d41a9bd20f525d69d1791b08106f722468 (patch) | |
tree | d698d1562c0ccc702ce0762a89aa2aae91ccf7b9 | |
parent | Merge pull request #4317 from lioncash/boost (diff) | |
download | yuzu-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 '')
-rw-r--r-- | src/video_core/shader_cache.h | 4 |
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 |