Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Use /W4 instead of /Wall on MSVC
The problem is that /Wall is too much verbose on Windows, giving us a lot of unhelpful feedbacks. Now, the official VC++ manual recommends to use /W4. Let's just switch to it. > We recommend that you use this option to provide lint-like warnings. > For a new project, it may be best to use /W4 in all compilations; > this will ensure the fewest possible hard-to-find code defects. > > https://docs.microsoft.com/en-us/cpp/build/reference/compiler-option-warning-level Signed-off-by: Fujimoto Seiji <[email protected]>
- Loading branch information