Browse Source
Merge pull request #9128 from abouvier/patch-1
tests: fix for -Wall
pull/15/merge
liamwhite
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/tests/video_core/buffer_base.cpp
|
|
@ -44,7 +44,7 @@ public: |
|
|
|
|
|
|
|
|
[[nodiscard]] unsigned Count() const noexcept { |
|
|
[[nodiscard]] unsigned Count() const noexcept { |
|
|
unsigned count = 0; |
|
|
unsigned count = 0; |
|
|
for (const auto [index, value] : page_table) { |
|
|
|
|
|
|
|
|
for (const auto& [index, value] : page_table) { |
|
|
count += value; |
|
|
count += value; |
|
|
} |
|
|
} |
|
|
return count; |
|
|
return count; |
|
|
|