Article ID: 243444 - Last Review: May 26, 2005 - Revision: 3.0 You receive a C2653 or C2039 error message when you try to reference a function from the STD C++ libraryThis article was previously published under Q243444 SYMPTOMS
Attempting to reference a function from the STD C++ library header <cstdlib> using the namespace STD (for example, std::exit(0)) causes the compiler to emit a C2653 or a C2039 (depending upon whether or not namespace "STD" is defined at the point where the error is emitted).
CAUSE
<cstdlib> does not define the namespace "STD". This is contrary to the VC++ documentation, which says:
"Include the standard header <cstdlib> to effectively include the standard header <stdlib.h> within the std namespace."
RESOLUTION
To work around the problem, place the "#include <cstdlib>" in the namespace "STD".
STATUSMicrosoft has confirmed that this is a bug in the Microsoft products that are listed in the "Applies to" section. MORE INFORMATION
Attempting to compile the following will cause the compiler to display the following error:
"error C2653: 'std' : is not a class or namespace name"
"error C2039: 'exit' : is not a member of 'std'"
In the first case, the C2653 is displayed, because the namespace "STD" has not been defined. In the second case, the C2039 is displayed, because the namespace "STD" has been defined (in the header <vector>), but the function exit is not part of that namespace. To work around the problem in either case, simply enclose the "#include <cstdlib>" in the namespace "STD", as follows: | Article Translations
|
Back to the top
