RE: [Boost-Users] Warnings compiling smart_ptr_test.cpp under MSV C++ 6.0
13 Nov
2002
13 Nov
'02
11:45 p.m.
Good ol' C4786. It warns you whenever a classes name exceeds 255 characters. Templates within templates within... exceed this quite often (as you may have noticed). Microsoft's debugger won't work properly with these classes. Pragma is your friend. Throw this code in before the #includes: #pragma warning (disable: 4786) I generally build my own include file to wrap stl and boost (often a precompiled header). This file ALWAYS disables C4786. Aren't STL compiler messages great? (that would be sarcasm) --Mark Storer Software Engineer Cardiff Software #include <disclaimer> typedef std::disclaimer<Cardiff> Discard;
8052
Age (days ago)
8052
Last active (days ago)
0 comments
1 participants
participants (1)
-
Mark Storer