QP/C++ 6.9.3
au-ds.lnt
Go to the documentation of this file.
1 // au-ds.lnt -- Author options - Dan Saks
2 
3 /*
4  This options file can be used to explicitly activate those
5  checks advocated by Dan Saks in his series of presentations on
6  "C++ Gotchas".
7 
8  You can use this file directly when linting your programs as in:
9 
10  lin au-ds files
11 
12  */
13 
14 +fsc // consider string constants as const char *
15 +e1933 // turn on "virtual call from member detection"
16 
17 // The rationale for the following two options are fully described
18 // in Dan Saks' article "const T vs. T const". Visit his web site
19 // at www.dansaks.com and click "Published Articles".
20 //
21 -fqb +e963 // require T const rather than const T