1

在包含的 ZenLib 头文件中,我有这个定义配置

//Char types
#if defined(__UNICODE__)
    #if defined (_MSC_VER) && !defined (_NATIVE_WCHAR_T_DEFINED)
        #pragma message Native wchar_t is not defined, not tested, you should put /Zc:wchar_t in compiler options
    #endif
    typedef wchar_t Char;
    #undef  __T
    #define __T(__x) L ## __x
#else // defined(__UNICODE__)
    typedef char Char;
    #undef  __T
    #define __T(__x) __x
#endif // defined(__UNICODE__)
#ifdef wchar_t
    typedef wchar_t wchar;
#endif // wchar_t

//***************************************************************************
// Platform differences
//***************************************************************************

//End of line
extern const Char* EOL;
extern const Char  PathSeparator;

最后两行无法使用此消息进行编译:

../ZZZ/ZenLib/Conf.h:243: error: expected unqualified-id before string constant
../ZZZ/ZenLib/Conf.h:243: error: expected initializer before string constant
make: *** [mediainfo.o] Error 1

任何人都可以洞察编译器在这里的期望吗?也标记为 c++,因为它编译为 cpp 文件。

从应用程序的角度来看,它应该被定义为char

4

1 回答 1

1

您包含的头文件之一包含 的定义EOL,进行声明

extern const Char* EOL;

看起来像

extern const Char* '\n'; // or '\r', or a numeric constant

将您的名称重命名EOL为不同的名称,例如EolEOL_CHAR应该会有所帮助。

于 2012-08-18T12:13:53.103 回答