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.
'identifier' : redefinition; different basic types
The identifier is already declared.
The following sample generates C2371:
// C2371.cpp
int main() {
int i;
float i; // C2371, redefinition
float f; // OK
}