Fix unhandled enumerants in switch statement

This commit is contained in:
Kawe Mazidjatari 2023-04-08 18:30:38 +02:00
parent f62092d6f2
commit a2bb707902
2 changed files with 4 additions and 0 deletions

View File

@ -308,6 +308,8 @@ string CRConClient::Serialize(const string& svReqBuf, const string& svReqVal, co
cl_request.set_requestmsg(svReqBuf);
break;
}
default:
break;
}
return cl_request.SerializeAsString();
}

View File

@ -283,6 +283,8 @@ void CoreMsgV(LogType_t logType, LogLevel_t logLevel, eDLL_T context,
bWarning = true;
break;
#endif // !NETCONSOLE
default:
break;
}
//-------------------------------------------------------------------------