Leaked source code of windows server 2003
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.

17 lines
745 B

  1. // Please note -- this is a representative set of error suppression
  2. // options. Please adjust to suit your own policies
  3. // See PC-lint for C/C++ manual (chapter LIVING WITH LINT)
  4. // for further details.
  5. -ean // remove nominal type mismatches
  6. -e720 // allow direct test of assignment
  7. -e502 -e713 -e737 -eau // don't report on signed/unsigned mismatches
  8. -e701 -e703 // shifting int left is OK
  9. -e537 // multiple includes okay
  10. -e614 // auto aggregrate initializer not constant allowed by vc
  11. -e730 // we want to pass boolean conditions
  12. // don't care about these specific errors for these macros
  13. -emacro(522, MYVERIFY)
  14. -emacro(506, HRESULT_FROM_WIN32)