mpic++ main(int, char**) - 已弃用从字符串常量到 ‘char*’ 的转换
在使用 mpic++ (Open MPI C++ 包装器编译器) 在 Ubuntu 11.10 上编译较旧的 C++ 代码期间,我收到此警告与 int main(int argc, char **argv){...}
连接:
main(int, char**) :警告:不推荐从字符串常量转换为'char*'
我尝试将代码编辑为 int main(int argc, const char *argv[]){...}
但它没有帮助(与例如 < a href="https://stackoverflow.com/questions/7896645/c-deprecated-conversion-from-string-constant-to-char">此问题)。
我做错了什么?我该如何修复它?
during compiling older C++ code on Ubuntu 11.10 with mpic++ (Open MPI C++ wrapper compiler) I got this warning connected with int main(int argc, char **argv){...}
:
main(int, char**) : warning: deprecated conversion from string constant to ‘char*’
I tried to edit the code to int main(int argc, const char *argv[]){...}
but it did not help (contrary to e.g. this issue).
What did I wrong? How can I fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论