Warning: ISO C++11 does not allow conversion from string literal to 'char*'

使用Xcode编译时,报警告ISO C++11 does not allow conversion from string literal to 'char*'

函数声明的格式,ErrorMessage(char* function),而调用时ErrorMessage("CopyFile")

改正方法为把函数声明改正为ErrorMessage(const char* function),就可以了

你可能感兴趣的:(工具)