码迷,mamicode.com
首页 > 其他好文 > 详细

error: ‘shared_ptr’ in namespace ‘std’ does not name a type

时间:2014-09-28 12:49:32      阅读:1526      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   sp   on   c   r   ef   c++   

用G++编译项目的时候发生标题上的错误,原因是,这是c++ 11标准的。在给g++传递命令行的时候加上-std=c++0x就行了。

还需要在源码中#include<memory>

我的cmakelists里面要这样改:

   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}  -std=c++0x")

 

 

references:

http://www.cmake.org/Wiki/CMake/Tutorials/C%2B%2B11Flags

http://stackoverflow.com/questions/12329226/a-short-c-file-and-makefile-i-can-make-in-the-shell-but-get-lots-of-error-wh

https://github.com/RobotLocomotion/drake/issues/92

error: ‘shared_ptr’ in namespace ‘std’ does not name a type

标签:http   io   ar   sp   on   c   r   ef   c++   

原文地址:http://www.cnblogs.com/foohack/p/3997771.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!