Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
macro name 'name' is reserved; 'Command' ignored
To fix by checking the following possible causes
Trying to define or undefine a predefined macro.
Trying to define or undefine the preprocessor operator defined.
The following sample generates C4117:
// C4117.cpp
// compile with: /W1
#define __FILE__ test // C4117. __FILE__ is a predefined macro
#define ValidMacroName test // ok
int main() {
}