mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-20 04:03:57 +00:00
Fix compilation
This commit is contained in:
@@ -109,8 +109,8 @@ namespace test
|
||||
|
||||
const auto has_diff = has_diff_after_count(pivot);
|
||||
|
||||
auto& bound = has_diff ? upper_bound : lower_bound;
|
||||
bound = pivot;
|
||||
auto* bound = has_diff ? &upper_bound : &lower_bound;
|
||||
*bound = pivot;
|
||||
|
||||
printf("Bounds: %" PRIx64 " - %" PRIx64 "\n", lower_bound, upper_bound);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user