Reputation: 25818
Are the Debug Routines found here: http://msdn.microsoft.com/de-de/library/1666sb98(v=VS.100).aspx specific to MSVC++ or are they C++ Standard?
What do other compilers provide?
Upvotes: 2
Views: 84
Reputation: 206646
They are not specified by the C++ standard. They are MSVC specific.
For GCC debug related options see this.
Upvotes: 3
Reputation: 793259
They are specific to the MSVC environment, they're not part of standard C++.
Other environments provide other tools, you need to ask about specific environments for specific answers. For example on linux, although not a direct replacement to debug routines, valgrind is a very useful too for debugging memory issues.
Upvotes: 1