More C++ Preprocessor Directives

June 5, 2007

The #pragma directive is a compiler specific directive which compiler vendors may use for their own purposes. For instance, a #pragma is often used to allow suppression of specific error messages, manage heap and stack debugging, etc. You can see the C# .Net equivalent here. In Microsoft Visual C++ 8 (Visual Studio 2005), one useful [...]

0