标签: c++
我有一个枚举,它定义了Countrycode,其格式为ISO_3166-1_alpha-2。 但是在第三方的某个地方包括#define,它定义了IN。 (例如,C:\ Program Files(x86)\ Windows Kits \ 10 \ Include \ 10.0.16299.0 \ shared \ minwindef.h)。
Countrycode
#ifndef IN #define IN #endif
现在我的国家代码Enum说我无法定义国家代码IN。
IN
有什么主意吗?