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.
#undef expected an identifier
The #undef
directive did not specify an identifier to undefine. The directive is ignored. To resolve the warning, be sure to specify an identifier. The following sample generates C4006:
// C4006.cpp
// compile with: /W1
#undef // C4006
// try..
// #undef TEST
int main() {
}