1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-01-14 13:33:42 +00:00

Merge pull request #1092 from TomHarte/68kWarning

Avoid returning without value in release builds.
This commit is contained in:
Thomas Harte 2022-09-09 16:54:46 -04:00 committed by GitHub
commit 84a6c89a92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -245,6 +245,7 @@ const char *_to_string(Operation operation, bool is_quick) {
default:
assert(false);
return "???";
}
}