Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
698 B

  1. // NoWarning.h - Turn off compiler warnings that may be safely
  2. // ignored.
  3. // (c) Copyright Schlumberger Technology Corp., unpublished work, created
  4. // 1999. This computer program includes Confidential, Proprietary
  5. // Information and is a Trade Secret of Schlumberger Technology Corp. All
  6. // use, disclosure, and/or reproduction is prohibited unless authorized
  7. // in writing. All Rights Reserved.
  8. #if !defined(SLBCSP_NOWARNING_H)
  9. #define SLBCSP_NOWARNING_H
  10. // Non-standard extension used: 'extern' before template explicit
  11. // instantiation
  12. #pragma warning(disable : 4231)
  13. // Identifier truncated to 255 in debugger/browser info
  14. #pragma warning(disable : 4786)
  15. #endif // SLBCSP_NOWARNING_H