1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-11-02 02:16:18 +00:00

Minor static_cast clean-ups.

This commit is contained in:
Thomas Harte
2019-12-22 17:56:59 -05:00
parent f3378f3e3e
commit 34a3790e11
2 changed files with 2 additions and 2 deletions

View File

@@ -80,7 +80,7 @@ void MFMController::process_input_bit(int value) {
break;
}
latest_token_.byte_value = shifter_.get_byte();
posit_event(static_cast<int>(Event::Token));
posit_event(int(Event::Token));
}
void MFMController::write_bit(int bit) {