-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed the remaining clang-tidy errors and warnings.
Changed and removed some comments, definitions, and constructors, so they're more efficient and easier to use. Fixed coverage configuration. It should now generate the coverage files for gcov (which still needs to be setup). Used list initialisation wherever possible. Reformatted .clang-tidy.
- Loading branch information
1 parent
8147be7
commit 388fe95
Showing
41 changed files
with
633 additions
and
566 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,34 @@ | ||
Checks: "-*,clang-analyzer-*,bugprone-*,modernize-*,cppcoreguidelines-*,readability-*,misc-*,google-*,performance-*,hicpp-*,cert-*" | ||
Checks: " | ||
bugprone-*, | ||
-bugprone-easily-swappable-parameters, | ||
cert-*, | ||
-cert-err58-cpp | ||
clang-analyzer-*, | ||
cppcoreguidelines-*, | ||
google-*, | ||
hicpp-*, | ||
misc-*, | ||
modernize-*, | ||
performance-*, | ||
portability-*, | ||
readability-*, | ||
" | ||
WarningsAsErrors: "*" | ||
CheckOptions: | ||
- key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic | ||
value: 1 | ||
- key: readability-identifier-length.IgnoredParameterNames | ||
value: "^[ijkxy_]$" | ||
- key: readability-identifier-length.IgnoredLoopCounterNames | ||
value: "^[ijkxy_]$" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.