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