Compiler Error C2371
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C2371.
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
}
Show: