The empty character constant ( ' ' ) is not permitted. Ex:
int main() {
char c = ''; // C2137
}
Possible resolution:
int main() {
char c = ' ';
}
This article is a derivative work based on Compiler Error C2137 which is provided by MSDN Community Content - Visual C++.