Fix compiler warning about returns on all code paths

This commit is contained in:
apathy
2016-07-07 01:41:33 -07:00
parent 4af4a8ca16
commit 98f2a8cac7

View File

@@ -149,4 +149,6 @@ const char* ToString(ChatResultCode code) {
case ChatResultCode::INVALID_INPUT:
return "INVALID_INPUT";
};
return "";
}