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.
empty character constant
The empty character constant ( ' ' ) is not permitted.
The following sample generates C2137:
// C2137.cpp
int main() {
char c = ''; // C2137
char d = ' '; // OK
}