1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-11-26 08:49:37 +00:00

Makes it obvious to GCC that a return result is always supplied.

This commit is contained in:
Thomas Harte 2017-11-12 16:37:18 -05:00
parent 6d80856f02
commit 198d0fd1de

View File

@ -19,6 +19,7 @@ const char *::Commodore::Serial::StringForLine(Line line) {
case Clock: return "Clock";
case Data: return "Data";
case Reset: return "Reset";
default: return nullptr;
}
}