我在Visual Studio中编译了我的野牛生成的文件并得到了这些错误:
... \ position.hh(83):错误C2589:'(':'::'右侧的非法令牌 ... \ _ position.hh(83):错误C2059:语法错误:'::'
... \ _ position.hh(83):错误C2589:'(':'::'的右侧非法令牌 ... \ _ position.hh(83):错误C2059:语法错误:'::'
相应的代码是:
inline void columns (int count = 1)
{
column = std::max (1u, column + count);
}
我认为问题出在std :: max;如果我将std :: max更改为等效代码,那么就没有问题了,但是有更好的解决方案而不是更改生成的代码吗?
这是我写的野牛文件:
//
// bison.yy
//
%skeleton "lalr1.cc"
%require "2.4.2"
%defines
%define parser_class_name "cmd_parser"
%locations
%debug
%error-verbose
%code requires {
class ParserDriver;
}
%parse-param { ParserDriver& driver }
%lex-param { ParserDriver& driver }
%union {
struct ast *a;
double d;
struct symbol *s;
struct symlist *sl;
int fn;
}
%code {
#include "helper_func.h"
#include "ParserDriver.h"
std::string error_msg = "";
}
%token <d> NUMBER
%token <s> NAME
%token <fn> FUNC
%token EOL
%token IF THEN ELSE WHILE DO LET
%token SYM_TABLE_OVERFLOW
%token UNKNOWN_CHARACTER
%nonassoc <fn> CMP
%right '='
%left '+' '-'
%left '*' '/'
%nonassoc '|' UMINUS
%type <a> exp stmt list explist
%type <sl> symlist
%{
extern int yylex(yy::cmd_parser::semantic_type *yylval,
yy::cmd_parser::location_type* yylloc);
%}
%start calclist
%%
... grammar rules ...
答案 0 :(得分:120)
您可能在某处包含windows.h
,其中定义了名为max
和min
的宏。
您可以#define NOMINMAX
包括windows.h
以阻止它定义这些宏,或者您可以通过使用一组额外的括号来阻止宏调用:
column = (std::max)(1u, column + count);
答案 1 :(得分:20)
在包含任何标头之前,在源代码顶部定义NOMINMAX符号。 Visual C ++将min
和max
定义为 windows.h 中的某些宏,它们会干扰您对相应标准函数的使用。
#define NOMINMAX