co-sc7.lnt
上传用户:filter2008
上传日期:2010-03-12
资源大小:2959k
文件大小:3k
源码类别:

编辑器/阅读器

开发平台:

C/C++

  1. //    co-sc7.lnt
  2. //    Compiler Options for Symantec C++ 7.0
  3. //    This file contains options to allow PC-lint to process source
  4. //    files for your compiler.  It is used as follows:
  5. //
  6. //    lint  co-sc7.lnt  source-file(s)
  7. //
  8.     // while processing compiler (library) header files ...
  9. -wlib(1)    // sets the warning level within library headers to 1
  10.     // (no warnings, just syntax errors).  Comment out if you
  11.     // are actually linting library headers.  This
  12.     // option makes obsolete options of the form -elib(axxx) where
  13.     // xxx >= 400 which may be retained for historical reasons.
  14. -elib(553)  // use of undefined preprocessor variables like #if __STDC__
  15. -elib(652)  // suppress message about #define of earlier declared symbols
  16. -elib(762)  // suppress message about multiple identical declarations and
  17. -elib(761)  // suppress superseded message for size_t and wchar_t
  18. -elib(760)  // suppress message about multiple identical macro defs
  19. // these are for iostream.h
  20. -elib(1724) // argument to copy construct should be const ref
  21. -elib(1721) // unusual operator =() declaration
  22. -elib(1722) // assignment operator does not return ref
  23. -elib(1704) // private constructors
  24. -elib(1720) // assignment op has non-const parameter
  25. -elib(1735) // default parameter within virtual function
  26. -elib(655)  // bitwise operator combining compatible enum's
  27. -elib(641)  // converting enum's to int
  28. // needed for windows.h
  29. -elib(514)           // unusual use of a boolean 
  30. -elib(1717)          // several empty prototypes
  31. -esym(714,WinMain)   // WinMain is only indirectly referenced
  32. // suppression of errors within expansion of macros
  33.  -emacro(507,FP_OFF)   // inhibit loss of information message.
  34. --emacro(507,offsetof) // inhibit loss of info message in macro
  35. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  36.  -emacro(792,assert)   // inhibit void cast of void message
  37. -emacro((???),va_arg)   // the va_arg() macro can yield 415, 416, 661, 662
  38. // 796 and 797 (out-of-bounds errors).
  39. // The following functions exhibit variable return modes.
  40. // That is, they may equally-usefully be called for a value
  41. // as called just for their effects.  Accordingly we inhibit
  42. // Warning 534 for these functions.
  43. // Feel free to add to or subtract from this list.
  44. -esym(534,close,creat,fclose,fflush,fprintf,fputc,wsprintf)
  45. -esym(534,_fputc,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
  46. -esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
  47. -esym(534,strncat,strncpy,unlink,write)
  48. -esym(534,__assertfail)
  49. -function(exit,__assertfail)  // __assertfail() is like exit()
  50. // misc. suppression
  51. -e793       // inhibit 'ANSI limit reached'
  52. // reserved words
  53. +rw(__interrupt,__near,__far,__huge,__fortran,__pascal,__cdecl,_export)
  54. +rw(__import,__export,__ss,__handle,__iob,__asm,__fastcall,__stdcall)