- 论坛徽章:
- 0
|
代码中使用了boost的正则表达式,编译的时候出现如下错误:
"/opt/boost/regex/v3/cregex.hpp", line 78: Error: Identifier expected instead of "0x01".
"/opt/boost/regex/v3/cregex.hpp", line 102: Error: "}" expected instead of "0x200".
"/opt/boost/regex/v3/cregex.hpp", line 102: Warning: declarator required in declaration.
"/opt/boost/regex/v3/cregex.hpp", line 102: Error: Use ";" to terminate declarations.
"/opt/boost/regex/v3/cregex.hpp", line 102: Error: A declaration was expected instead of "0x200".
"/opt/boost/regex/v3/cregex.hpp", line 105: Error: "," expected instead of "}".
"/opt/boost/regex/v3/cregex.hpp", line 137: Error: Identifier expected instead of "1".
其中cregex.hpp出错行如下
typedef enum{
REG_BASIC = 0000,
REG_EXTENDED = 0001, //78
REG_ICASE = 0002,
typedef enum{
REG_NOTBOL = 00001, //102
REG_NOTEOL = 00002,
REG_STARTEND = 00004
} reg_exec_flags; //105
typedef enum
{
REG_NOERROR = 0, /* Success. */
REG_NOMATCH = 1, /* Didn't find a match (for regexec). */ //137
/* POSIX regcomp return error codes. (In the order listed in the
standard.) */
REG_BADPAT = 2, /* Invalid pattern. */
这些错误是什么意思呢?看了半天不明白什么意思?cregex.hpp是标准boost头文件,总不可能头文件有问题吧 |
|