diff options
author | Alexandre Bouvier <contact@amb.tf> | 2022-10-25 17:20:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 17:20:23 +0200 |
commit | fa9b7db76f4c179e2af2f6f1974f92858586d533 (patch) | |
tree | 5ba9769d8e9f82532060fa6780053d30cb4f7ce8 /src | |
parent | Merge pull request #9112 from vonchenplus/deferred_draw (diff) | |
download | yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar.gz yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar.bz2 yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar.lz yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar.xz yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.tar.zst yuzu-fa9b7db76f4c179e2af2f6f1974f92858586d533.zip |
Diffstat (limited to '')
-rw-r--r-- | src/tests/video_core/buffer_base.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/video_core/buffer_base.cpp b/src/tests/video_core/buffer_base.cpp index 71121e42a..f7236afab 100644 --- a/src/tests/video_core/buffer_base.cpp +++ b/src/tests/video_core/buffer_base.cpp @@ -44,7 +44,7 @@ public: [[nodiscard]] unsigned Count() const noexcept { unsigned count = 0; - for (const auto [index, value] : page_table) { + for (const auto& [index, value] : page_table) { count += value; } return count; |