From 98f2a8cac78c7e252f8130a294a09afd72ef8852 Mon Sep 17 00:00:00 2001 From: apathy Date: Thu, 7 Jul 2016 01:41:33 -0700 Subject: [PATCH] Fix compiler warning about returns on all code paths --- src/ChatEnums.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ChatEnums.cpp b/src/ChatEnums.cpp index 042c579..49abb05 100644 --- a/src/ChatEnums.cpp +++ b/src/ChatEnums.cpp @@ -149,4 +149,6 @@ const char* ToString(ChatResultCode code) { case ChatResultCode::INVALID_INPUT: return "INVALID_INPUT"; }; + + return ""; }