1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-04 17:56:29 +00:00

Corrects lambda capture.

This commit is contained in:
Thomas Harte 2020-02-22 12:34:16 -05:00
parent f0ec168ac7
commit 851cba0b25

View File

@ -149,7 +149,7 @@
}
// Run the thing.
const auto comparitor = [] {
const auto comparitor = [=] {
// Test the end state.
NSDictionary *const finalState = test[@"final state"];
const auto state = test68000->processor.get_state();