第一次切换到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

最佳答案

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宏由platcorm / compiler / std-library的boost的config.hpp header 自动定义。抱歉。

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

-
埃里克·尼布勒
BoostPro计算
www.boostpro.com

09-12 05:16