Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的代码中写了这一行
vector<GLfloat> cone1 { 0.0f, 2.4f, -11.0f, /*rotated*/30.0f, -1.5f, 0.0f, 0.0f };
但是错误出现在 C++98 中,变量必须由构造函数初始化,而不是由 {}
我已经搜索了应该使用-std-c++11的解决方案,但我不知道如何在 Eclipse 中添加它?
你可以通过几个简单的步骤来做到这一点......
-std=c++11
现在重建你的项目。
注意:这假设您没有创建项目来使用 GNU Autotools 或 makefile。