There was an error while loading. Please reload this page.
1 parent 1be918f commit d7fd081Copy full SHA for d7fd081
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