标签: c++
在stdafx.h文件中的VS 2010 sp1中执行此操作时:
#include <memory> #define ptr_type std::shared_ptr
我收到了一个错误:
fatal error C1004: unexpected end-of-file found
答案 0 :(得分:0)
在.cpp文件中,您需要将#include "stdafx.h"作为第一行代码。这适用于预编译的头文件支持。
#include "stdafx.h"