The interactive file manager requires Javascript. Please enable it or use sftp or scp.
You may still browse the files here.
| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| cppcheck-1.48-x86-Setup.msi | 2011-04-12 | 9.8 MB | |
| readme.txt | 2011-04-09 | 512 Bytes | |
| cppcheck-1.48.zip | 2011-04-09 | 1.2 MB | |
| cppcheck-1.48.tar.gz | 2011-04-09 | 1.1 MB | |
| cppcheck-1.48.tar.bz2 | 2011-04-09 | 833.2 kB | |
| Totals: 5 Items | 12.9 MB | 0 | |
Release notes for 1.48
There are no major new features in 1.48. There are more and better checks.
New check: Wrong usage of ! operator in conditions.
Example: if (!x == 0) {
New check: Use "throw" without arguments to rethrow exceptions.
New check: Comparison of substring with string literal will always/never match because size doesn't match.
New check: Postfix increment of boolean
New check: Clarify condition with parantheses (when there are assignment + comparison)
Example: if (a = b > 0) {