Commit 88b0bc4d9571eddf84e16ea90da2a2d1de467a98
Committed by
Henry Schreiner
1 parent
ffe5b29e
Add include_what_you_use to cpplint checks (#414)
* Add build/include_what_you_use to cpplint checks * Fix all cpplint build/include_what_you_use issues
Showing
10 changed files
with
13 additions
and
1 deletions
CPPLINT.cfg
| ... | ... | @@ -9,6 +9,6 @@ filter=-whitespace/blank_line # Unnecessarily strict with blank lines that othe |
| 9 | 9 | filter=-whitespace/parens,-whitespace/braces # Conflict with clang-format |
| 10 | 10 | |
| 11 | 11 | # Filters to be included in future |
| 12 | -filter=-whitespace/indent,-whitespace/comments,-readability/braces,-build/include_what_you_use | |
| 12 | +filter=-whitespace/indent,-whitespace/comments,-readability/braces | |
| 13 | 13 | filter=-legal/copyright # Remove this line after Version 1.9 |
| 14 | 14 | ... | ... |
include/CLI/App.hpp
include/CLI/Config.hpp
include/CLI/ConfigFwd.hpp
include/CLI/Error.hpp
include/CLI/Formatter.hpp
| ... | ... | @@ -3,7 +3,9 @@ |
| 3 | 3 | // Distributed under the 3-Clause BSD License. See accompanying |
| 4 | 4 | // file LICENSE or https://github.com/CLIUtils/CLI11 for details. |
| 5 | 5 | |
| 6 | +#include <algorithm> | |
| 6 | 7 | #include <string> |
| 8 | +#include <vector> | |
| 7 | 9 | |
| 8 | 10 | #include "CLI/App.hpp" |
| 9 | 11 | #include "CLI/FormatterFwd.hpp" | ... | ... |
include/CLI/FormatterFwd.hpp
include/CLI/Split.hpp
include/CLI/TypeTools.hpp