在下面的代码中,我得到错误。我在做什么?
regex.cpp:11:错误:字符串常量之前的预期标识符
regex.cpp:11:错误:字符串常量前应为“,”或“...”
#include <boost/regex.hpp>
#include <iostream>
#include <string>
class RH
{
public:
bool matches(const std::string & str);
private:
boost::regex regex_("\\d:\\d-\\d:\\d"); // this is where error points to
};