programing

std :: max 호출 문제

nasanasas 2020. 12. 27. 11:05
반응형

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 ...

windows.h이라는 매크로를 정의하는 어딘가에 포함되어있을 것입니다 .maxmin

You can #define NOMINMAX before including windows.h to prevent it from defining those macros, or you can prevent macro invocation by using an extra set of parentheses:

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

Define the NOMINMAX symbol at the top of your source, before you include any headers. Visual C++ defines min and max as macros somewhere in windows.h, and they interfere with your use of the corresponding standard functions.

#define NOMINMAX

ReferenceURL : https://stackoverflow.com/questions/2789481/problem-calling-stdmax

반응형