MinGW下的Boost :: Xpressive编译难题

时间:2009-10-24 03:33:27

标签: c++ mingw boost-xpressive

第一次切换到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某事吗?

提前致谢, Billy3

1 个答案:

答案 0 :(得分: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由您的platcorm / compiler / std-library的boost的config.hpp头自动定义。遗憾。

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

- Eric Niebler BoostPro计算 www.boostpro.com