Compiler Error C2045
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 C2045.
identifier' : label redefined
The label appears before multiple statements in the same function.
The following sample generates C2045:
// C2045.cpp
int main() {
label: {
}
goto label;
label: {} // C2045
}
Show: