8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 55df703 + d7fd081 commit b5eacf0Copy full SHA for b5eacf0
02-Use_the_Tools_Available.md
@@ -101,8 +101,9 @@ You should use as many compilers as you can for your platform(s). Each compiler
101
102
### GCC / Clang
103
104
-`-Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic`
+`-Wall -Wextra -Wshadow -Wnon-virtual-dtor -pedantic` - use these and consider the following (see descriptions below)
105
106
+ * `-pedantic` - Warn on language extensions
107
* `-Wall -Wextra` reasonable and standard
108
* `-Wshadow` warn the user if a variable declaration shadows one from a parent context
109
* `-Wnon-virtual-dtor` warn the user if a class with virtual functions has a non-virtual destructor. This helps catch hard to track down memory errors
0 commit comments