warning C4786:
-
Does anyone know how to prevent the really annoying compiler warning C4768 ('identifier' : identifier was truncated to 'number' characters in the debug information)? (normal when working with STL) I want to use warning level 4 and the #pragma warning(disable: 4768) doesn't work, or not everytime. thanks :confused: zack
-
Does anyone know how to prevent the really annoying compiler warning C4768 ('identifier' : identifier was truncated to 'number' characters in the debug information)? (normal when working with STL) I want to use warning level 4 and the #pragma warning(disable: 4768) doesn't work, or not everytime. thanks :confused: zack
The #pragma works, at least for me. You just have to put it before #including STL headers. Usually, I place it at the top of stdafx.h Tomasz Sowinski -- http://www.shooltz.com
-
The #pragma works, at least for me. You just have to put it before #including STL headers. Usually, I place it at the top of stdafx.h Tomasz Sowinski -- http://www.shooltz.com
-
Does anyone know how to prevent the really annoying compiler warning C4768 ('identifier' : identifier was truncated to 'number' characters in the debug information)? (normal when working with STL) I want to use warning level 4 and the #pragma warning(disable: 4768) doesn't work, or not everytime. thanks :confused: zack
use http://www.codeproject.com/tools/stlfilt.asp it gets rid of all of these errors.