1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Avoid returning without value in release builds.

This commit is contained in:
Thomas Harte 2022-09-09 16:48:12 -04:00
parent 2edbbfbe37
commit 451b730c8e

View File

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