Intel® C++ Compiler XE 13.1 User and Reference Guides
Undefines any definition currently in effect for the specified macro.
Windows: Preprocessor > Undefine Preprocessor Definitions
Linux: Preprocessor > Undefine Preprocessor Definitions
OS X: Preprocessor > Undefine Preprocessor Definitions
All
Linux and OS X: | -Uname |
Windows: | /Uname |
name |
Is the name of the macro to be undefined. |
OFF |
Macro definitions are in effect until they are undefined. |
This option undefines any definition currently in effect for the specified macro. It is equivalent to an #undef preprocessing directive.
On Windows systems, use the /u option to undefine all previously defined preprocessor values.
None