Include shared_ptr for C++ and C++11
原文链接 http://www.k8s.tips/tech/2015/06/23/Include-shared_ptr-for-C++-and-C++11/
注:以下为加速网络访问所做的原文缓存,经过重新格式化,可能存在格式方面的问题,或偶有遗漏信息,请以原文为准。
#if __cplusplus >= 201103L
#include <memory>
#else // __cplusplus >= 201103L
#include <tr1/memory>
#endif // __cplusplus >= 201103L