Commit c94aa406a65ca8f6b9c6c8c97ed2f7dd4e0e105e
1 parent
44f43bd6
Fixing namespace endings
Showing
11 changed files
with
19 additions
and
16 deletions
.clang-tidy
| 1 | 1 | #Checks: '*,-clang-analyzer-alpha.*' |
| 2 | -Checks: '-*,google-readability-casting,llvm-namespace-comment,performance-unnecessary-value-param,llvm-include-order,misc-throw-by-value-catch-by-reference,readability-container-size-empty,google-runtime-references,modernize*' | |
| 2 | +#Checks: '-*,google-readability-casting,llvm-namespace-comment,performance-unnecessary-value-param,llvm-include-order,misc-throw-by-value-catch-by-reference,readability-container-size-empty,google-runtime-references,modernize*' | |
| 3 | +Checks: '-*,llvm-namespace-comment' | |
| 3 | 4 | HeaderFilterRegex: '.*hpp' |
| 4 | 5 | CheckOptions: |
| 5 | 6 | - key: readability-braces-around-statements.ShortStatementLines | ... | ... |
examples/try2.cpp
include/CLI/App.hpp
| ... | ... | @@ -29,7 +29,7 @@ namespace CLI { |
| 29 | 29 | namespace detail { |
| 30 | 30 | enum class Classifer {NONE, POSITIONAL_MARK, SHORT, LONG, SUBCOMMAND}; |
| 31 | 31 | struct AppFriend; |
| 32 | -} | |
| 32 | +} // namespace detail | |
| 33 | 33 | |
| 34 | 34 | class App; |
| 35 | 35 | |
| ... | ... | @@ -1178,7 +1178,7 @@ struct AppFriend { |
| 1178 | 1178 | } |
| 1179 | 1179 | |
| 1180 | 1180 | }; |
| 1181 | -} | |
| 1181 | +} // namespace detail | |
| 1182 | 1182 | |
| 1183 | -} | |
| 1183 | +} // namespace CLI | |
| 1184 | 1184 | ... | ... |
include/CLI/Error.hpp
include/CLI/Ini.hpp
include/CLI/Option.hpp
include/CLI/Split.hpp
include/CLI/StringTools.hpp
include/CLI/Timer.hpp
include/CLI/TypeTools.hpp