mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 06:14:54 +00:00
UnitTests: Rename lambda parameters which hide previous declarations
This commit is contained in:
parent
89873d6238
commit
6e6736c89f
1 changed files with 2 additions and 2 deletions
|
@ -92,8 +92,8 @@ TEST(PageFault, PageFault)
|
|||
perform_invalid_access(data);
|
||||
auto end = std::chrono::high_resolution_clock::now();
|
||||
|
||||
auto difference_in_nanoseconds = [](auto start, auto end) {
|
||||
return std::chrono::duration_cast<std::chrono::nanoseconds>(end - start).count();
|
||||
auto difference_in_nanoseconds = [](auto diff_start, auto diff_end) {
|
||||
return std::chrono::duration_cast<std::chrono::nanoseconds>(diff_end - diff_start).count();
|
||||
};
|
||||
|
||||
EMM::UninstallExceptionHandler();
|
||||
|
|
Loading…
Add table
Reference in a new issue