Update 02-Use_the_Tools_Available.md

Update working around /Wall
This commit is contained in:
Jason Turner
2024-06-18 22:21:10 -06:00
committed by GitHub
parent b0ece552dc
commit d57b14ec6d

View File

@@ -161,7 +161,7 @@ Consider using `-Weverything` and disabling the few warnings you need to on Clan
Not recommended
* `/Wall` - Also warns on files included from the standard library, so it's not very useful and creates too many extra warnings.
* `/Wall` - Not recommended for normal builds because the MSVC standard library is not `/Wall` "clean", but can be enabled to discover new warnings to enable.
* Since VS2022, `/external:anglebrackets /external:W0` can be used to turn off warnings from all headers included with angle brackets, e.g. `#include <utility>`.