Why doesn't this disable this STL warning
-
I often struggle to disable this STL warning and am again struggling with it. I have tried placing this in every logical place to prevent the numerous warnings for "identifier was truncated to '255' characters in the debug information". #pragma warning( disable : 4786)
-
I often struggle to disable this STL warning and am again struggling with it. I have tried placing this in every logical place to prevent the numerous warnings for "identifier was truncated to '255' characters in the debug information". #pragma warning( disable : 4786)
1. Type it in stdafx.h before including anything else 2. If the problem persists add #include <iostream> to stdafx.h before anyother STL headers.
-
1. Type it in stdafx.h before including anything else 2. If the problem persists add #include <iostream> to stdafx.h before anyother STL headers.