17
如何在Eclipse CDT中启用C ++ 11 / C ++ 0x支持?
Eclipse 3.7.1 CDT 1.4.1 GCC 4.6.2 这是一段C ++ 11代码的示例: auto text = std::unique_ptr<char[]>(new char[len]); Eclipse编辑器抱怨: Function 'unique_ptr' could not be resolved Makefile编译正常。如何使Eclipse停止抱怨此类错误?
210
c++
eclipse
c++11
eclipse-cdt