Minor updates in text files.

This commit is contained in:
Daniel Marjamäki 2008-04-06 11:39:49 +00:00
parent e47cf2c97c
commit daf1af0570
2 changed files with 4 additions and 8 deletions

View File

@ -1,6 +1,8 @@
List of bugs that c++check finds
This is very incomplete.
Buffer overrun:

View File

@ -24,21 +24,15 @@ Dead pointers
Buffer overruns
When writing to struct members
Style
Increase constness
Function parameters: Use std::ostream instead of std::ostringstream or std::ofstream
Optimisation: Return "const _T &" instead of "_T"?
Function parameters: By reference instead of by value
Function parameters: Better with "const _T *" or "const _T &" than "_T"
Optimisation: Return "const _T &" instead of "_T"?
Unused variable (function, file, class), unused value, unused parameter