1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-11 18:25:05 +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

View File

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