[C++] std::numeric_limits::max() error: '(': illegal token on right side of '::'

#include  
 
x
= std::numeric_limits::max(); 
 
c
:/.../x.cpp(192) : warning C4003: not enough actual parameters for macro 'max' 
c
:/.../x.cpp(192) : error C2589: '(' : illegal token on right side of '::' 
c
:/.../x.cpp(192) : error C2059: syntax error : '::' 

错误原因:

      包含的另一个头文件中包含了 max() 的宏定义。

 

解决方法:

添加代码:

 

#undef max

 

相关讨论:

 


 

你可能感兴趣的:([C++] std::numeric_limits::max() error: '(': illegal token on right side of '::')