The folllowing options suppress various compiler actions.
Syntax | Description |
---|---|
/noBool | Suppresses the C++ bool, true, and false keywords. |
/noHRESULT | Suppresses implicit compiler support for HRESULT variables. HRESULT values will display as a number rather than a symbol. For example, you will see 0 in the debugger for variables of type HRESULT instead of S_OK. |
/nologo | Suppresses display of the sign-on banner when the compiler starts up and display of informational messages during compiling. |
/noWchar_t | Disables the wchar_t native data type. You can now use typedefs to create a wchar_t data type. |
Compiler Options | Setting Compiler Options