'(' : illegal token on right side of '::'

...\position.hh(83): error C2589: '(' : illegal token on right side of '::'
...\position.hh(83): error C2059: syntax error : '::'
...\position.hh(83): error C2589: '(' : illegal token on right side of '::'
...\position.hh(83): error C2059: syntax error : '::'
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

你可能感兴趣的:('(' : illegal token on right side of '::')