我在 Visual Studio 2010(C++ 项目)中有一个项目,它在调试模式下编译没有问题,但在发布模式下给了我大量奇怪的“语法”错误。错误如下:
c:\program files\point grey research\flycapture2\include\Error.h(38): error C2059: syntax error : 'string'
1>c:\program files\point grey research\flycapture2\include\Error.h(39): error C2146: syntax error : missing ';' before identifier 'Error'
1>c:\program files\point grey research\flycapture2\include\Error.h(39): error C2470: 'Error' : looks like a function definition, but there is no parameter list; skipping apparent body
1>c:\program files\point grey research\flycapture2\include\BusManager.h(56): error C2059: syntax error : 'string'
1>c:\program files\point grey research\flycapture2\include\BusManager.h(57): error C2146: syntax error : missing ';' before identifier 'BusManager'
FlyCapture 是我的代码使用的库。我仔细检查了包含的头目录和库库的路径,它们是正确的。我还更改了库文件名,使其不包含“d”(用于调试)。我还检查了我的代码中的预编译器 _DEBUG 语句。我一个也没找到。这是非常沮丧的。任何想法我还应该检查什么?我正在 x64 模式下编译。
编辑:
第一个错误指向下面粘贴的库头文件中的“class FLYCAPTURE2_API Error”行(我什至没有自己编写这个库,它在调试模式下工作):
namespace FlyCapture2
{
struct ErrorImpl;
/**
* The Error object represents an error that is returned from the library.
* Overloaded operators allow comparisons against other Error objects or
* the ErrorType enumeration.
*/
class FLYCAPTURE2_API Error
{
public:
/**
* Default constructor.
*/
Error();
/**
* Copy constructor.
*/
Error( const Error& error );
/**
* Default destructor.
*/
virtual ~Error();
这对我来说很奇怪。这段代码应该没有问题。