我有这个库vesSharedPtr.h,其中包含以下代码:
#ifndef VESSHAREDPTR_H
#define VESSHAREDPTR_H
// C/C++ includes
#include < tr1/memory >
#define vesSharedPtr std::tr1::shared_ptr
#define vesWeakPtr std::tr1::weak_ptr
#endif // VESSHAREDPTR_H
因为当我尝试运行我的项目时,总会出现此错误:
#include < tr1/memory > file not found
答案 0 :(得分:0)
我在编译iOS 7时遇到了这个问题。它可以在iOS 6上运行,因为vtk.framework是为iOS 6编译的。