41 lines
1.0 KiB
HTML
41 lines
1.0 KiB
HTML
|
<html>
|
||
|
<head>
|
||
|
<title>Severities</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<h1>Severities</h1>
|
||
|
|
||
|
<h2>error</h2>
|
||
|
|
||
|
<img src="images/severities-error.png"><br>
|
||
|
used when bugs are found
|
||
|
|
||
|
<h2>warning</h2>
|
||
|
|
||
|
<img src="images/severities-warning.png"><br>
|
||
|
suggestions about defensive programming to prevent bugs
|
||
|
|
||
|
<h2>style</h2>
|
||
|
|
||
|
<img src="images/severities-style.png"><br>
|
||
|
stylistic issues related to code cleanup (unused functions, redundant code, constness, and such)
|
||
|
|
||
|
<h2>performance</h2>
|
||
|
|
||
|
<img src="images/severities-performance.png"><br>
|
||
|
Suggestions for making the code faster. These suggestions are only based on common knowledge. It is not certain you'll get any measurable difference in speed by fixing these messages.
|
||
|
|
||
|
<h2>portability</h2>
|
||
|
|
||
|
<img src="images/severities-portability.png"><br>
|
||
|
portability warnings. 64-bit portability. code might work different on different compilers. etc.
|
||
|
|
||
|
<h2>information</h2>
|
||
|
|
||
|
<img src="images/severities-information.png"><br>
|
||
|
Configuration problems. The recommendation is to only enable these during configuration.
|
||
|
|
||
|
</body>
|
||
|
</html>
|