/* Visual Studio requires '__inline' for C code */
static inline const char *ER_CLIENT(int client_errno) {
if (client_errno >= CR_ERROR_FIRST && client_errno <= CR_ERROR_LAST)
return client_errors[client_errno - CR_ERROR_FIRST];
return client_errors[CR_UNKNOWN_ERROR];
}
在2015下能够运行的程序,移植到2013下出现错误: error C2143: 语法错误 : 缺少“{”(在“const”的前面)
解决办法,看函数上面备注,在inline前面加 ’-‘
可能是2015和2013编译器支持的标准不同(仅供参考).
纪念我犯的二货错误 2019-4-15。