web-dev-qa-db-ja.com

std :: maxの呼び出しに関する問題

バイソンで生成されたファイルを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 ...
59
Haiyang

おそらくwindows.hどこかで、maxおよびminという名前のマクロを定義します。

あなたはできる #define NOMINMAX含める前にwindows.hを使用してこれらのマクロを定義しないようにするか、追加の括弧のセットを使用してマクロの呼び出しを防止できます。

column = (std::max)(1u, column + count);
122
James McNellis

ヘッダーを含める前に、ソースの上部にNOMINMAXシンボルを定義します。 Visual C++はminおよびmaxwindows.hのどこかでマクロとして定義し、対応する標準関数の使用を妨害します。

#define NOMINMAX
21
Rob Kennedy