diff options
| author | Dr. Dystopia <jonis9898@hotmail.com> | 2025-04-28 22:02:56 +0200 |
|---|---|---|
| committer | Dr. Dystopia <jonis9898@hotmail.com> | 2025-06-14 10:19:31 +0200 |
| commit | ca8f9b672b3d8da3e2974802e89f6c6b6e23d99e (patch) | |
| tree | b6dd8deb5f1bf6d110d71a73521a241d37c577b1 /Source/Core/DiscIO | |
| parent | 95f6c76713e6c2a6b50f1a149a7886e72fea6ec7 (diff) | |
Source: Remove redundant lambda parameter lists
Diffstat (limited to 'Source/Core/DiscIO')
| -rw-r--r-- | Source/Core/DiscIO/VolumeWii.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/DiscIO/WIABlob.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DiscIO/VolumeWii.cpp b/Source/Core/DiscIO/VolumeWii.cpp index 764dabe543..3ba8433788 100644 --- a/Source/Core/DiscIO/VolumeWii.cpp +++ b/Source/Core/DiscIO/VolumeWii.cpp @@ -518,7 +518,7 @@ bool VolumeWii::HashGroup(const std::array<u8, BLOCK_DATA_SIZE> in[BLOCKS_PER_GR if (read_function && success) success = read_function(i); - hash_futures[i] = std::async(std::launch::async, [&in, &out, &hash_futures, success, i]() { + hash_futures[i] = std::async(std::launch::async, [&in, &out, &hash_futures, success, i] { const size_t h1_base = Common::AlignDown(i, 8); if (success) diff --git a/Source/Core/DiscIO/WIABlob.cpp b/Source/Core/DiscIO/WIABlob.cpp index 9ee8470294..18cdb04d4b 100644 --- a/Source/Core/DiscIO/WIABlob.cpp +++ b/Source/Core/DiscIO/WIABlob.cpp @@ -1569,7 +1569,7 @@ WIARVZFileReader<RVZ>::ProcessAndCompress(CompressThreadState* state, CompressPa continue; } - const auto pad_exception_lists = [&entry]() { + const auto pad_exception_lists = [&entry] { while (entry.exception_lists.size() % 4 != 0) entry.exception_lists.push_back(0); }; |
