Johannes Gerer
Johannes Gerer

Reputation: 25818

Are Debug Routines MSVC++ specific?

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

Answers (2)

Alok Save
Alok Save

Reputation: 206646

They are not specified by the C++ standard. They are MSVC specific.
For GCC debug related options see this.

Upvotes: 3

CB Bailey
CB Bailey

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

Related Questions