1

我在 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();

这对我来说很奇怪。这段代码应该没有问题。

4

1 回答 1

1

我知道了。我能够找到一个配置为在发布模式下编译的 FlyCapture2 库附带的示例项目。它包含几个不同于调试模式的开关。所以我的路径是正确的,但是要启用一些编译器开关和库忽略。如果使用 FlyCapture2 的任何人发生这种情况,请查看示例项目并将它们切换到发布模式,然后将您的项目的发布模式与他们的进行比较。感谢你们!

于 2013-11-01T16:18:37.517 回答