home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / stl453up.zip / stl453fx / src / msvc_warning_disablers.h < prev    next >
C/C++ Source or Header  |  2002-04-29  |  457b  |  12 lines

  1. #pragma warning( disable : 4146 ) // unary minus applied to unsigned type
  2. #pragma warning( disable : 4244 ) // arithmetic conversion - possible loss of data
  3. #pragma warning( disable : 4290 ) // c++ exception specification ignored
  4.  
  5. // dwa 1/28/00 - actually I think this may indicate real bugs. We should look
  6. // into these
  7. #pragma warning( disable : 4018 ) // signed/unsigned mismatch
  8. #pragma warning( disable : 4251 ) // DLL interface needed
  9.  
  10.  
  11.  
  12.