This is really starting to annoy me...
I'm stuck on a project that needs to be done in VC++ 6.0, so I've got all the broken STL that comes with it. I'm getting this error (multiple times) when I compile:
I tried a #pragma warning( disable : 4786 ) but that didn't work. I even disabled warnings all together in the project settings, but the damn things just keep popping up! How do I kill a warning that won't die?
I'm stuck on a project that needs to be done in VC++ 6.0, so I've got all the broken STL that comes with it. I'm getting this error (multiple times) when I compile:
Code:
c:\program files\microsoft visual studio 6.0\vc98\include\xmemory(56) : warning C4786: '?address@?$allocator@V?$map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V12@U?$less@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@st
d@@@2@V?$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@std@@@std@@QBEPAV?$map@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@V12@U?$less@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@V?
$allocator@V?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@2@@2@AAV32@@Z' : identifier was truncated to '255' characters in the browser information
c:\program files\microsoft visual studio 6.0\vc98\include\map(44) : see reference to class template instantiation 'std::allocator<class std::map<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,class st
d::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >,struct std::less<class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > >,class std::allocator<class std::basic_string<char,struct std::
char_traits<char>,class std::allocator<char> > > > >' being compiled
I tried a #pragma warning( disable : 4786 ) but that didn't work. I even disabled warnings all together in the project settings, but the damn things just keep popping up! How do I kill a warning that won't die?