1

第一次切换到 GCC,编译器在这里告诉我的内容让我有点困惑。从本质上讲,它的行为就像 boost::xpressive::wsregex 没有定义(我相信)。

以下是相关代码:

#include "criterion.h"
#include <string>
#include <boost/xpressive/xpressive.hpp>

//More lines of code omitted here

class perlRegex : public regexClass
{
private:
    std::wstring regexString;
    boost::xpressive::wsregex regex;   // This is the line complained about
public:
    unsigned __int32 getPriorityClass() const;
    BOOL include(fileData &file) const;
    unsigned int directoryCheck(const std::wstring& /*directory*/) const;
    std::wstring debugTree() const;
    perlRegex(const std::wstring& inRegex);
};

这是错误:

regex.h:46: error: using-declaration for non-member at class scope
regex.h:46: error: expected `;' before "regex"

我在这里感到困惑的是我正在声明一个成员,但它抱怨我在其他地方使用了一个成员。

我是不是忘记了#include什么?

在此先感谢,比利3

4

1 回答 1

5

cygwin 和 mingw 不支持宽字符,所以 xpressive 也不支持。请参阅 xpressive_fwd.hpp 中的以下内容:

#if defined(BOOST_NO_CWCHAR) | \
    defined(BOOST_NO_CWCTYPE) | \
    defined(BOOST_NO_STD_WSTRING)
# ifndef BOOST_XPRESSIVE_NO_WREGEX
#  define BOOST_XPRESSIVE_NO_WREGEX
# endif
#endif

宏 BOOST_NO_CWCHAR、BOOST_NO_CWCTYPE 和 BOOST_NO_STD_WSTRING 由 boost 的 config.hpp 头文件为您的 platcorm/compiler/std-library 自动定义。对不起。

将来,将提升问题发布到提升用户列表中,您将获得更好的结果。

-- Eric Niebler BoostPro Computing www.boostpro.com

于 2009-10-24T14:21:34.923 回答