noDumbWinWarnings.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:1k
源码类别:

3D图形编程

开发平台:

Visual C++

  1. // header file to disable certain warnings on Microsoft CL compiler.
  2. // since it doesn't allow you to disable individual warnings from
  3. // command line, but it can force inclusion of a .h from command line.
  4. // 4355 is "'this' used in base member initializer list"; the stl_rope
  5. // class causes this every time.
  6. // 4786 is 'long_ass_identifier_name' : identifier was truncated to 255
  7. // chars in the debug information" which lots of STL template classes
  8. // (esp. map classes) cause.
  9. #pragma warning (disable: 4355 4786)