Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vcsetup
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ag-ohlberger
dune-community
vcsetup
Commits
f7062ccf
Commit
f7062ccf
authored
3 years ago
by
Tobias Leibner
Browse files
Options
Downloads
Patches
Plain Diff
[clang-tidy] Add missing commas, suppress two warnings
parent
86ebedc6
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.clang-tidy
+8
-2
8 additions, 2 deletions
.clang-tidy
with
8 additions
and
2 deletions
.clang-tidy
+
8
−
2
View file @
f7062ccf
...
...
@@ -25,7 +25,7 @@ Checks: '##### readability checks #######
readability-uniqueptr-delete-release,
###### modernize checks #######
modernize-avoid-bind,
modernize-avoid-c-arrays
modernize-avoid-c-arrays
,
modernize-concat-nested-namespaces,
modernize-deprecated-headers,
modernize-deprecated-ios-base-aliases,
...
...
@@ -70,7 +70,7 @@ Checks: '##### readability checks #######
misc-uniqueptr-reset-release,
misc-unused-alias-decls,
misc-unused-parameters,
misc-unused-using-decls
misc-unused-using-decls
,
###### bugprone checks ######
bugprone-argument-comment,
bugprone-bool-pointer-implicit-conversion,
...
...
@@ -100,6 +100,12 @@ Checks: '##### readability checks #######
bugprone-incorrect-roundings,
bugprone-infinite-loop,
bugprone-integer-division,
###### The following checks are disabled due to false positives/warnings outside our own code ########
# See https://github.com/llvm/llvm-project/issues/40486 and https://bugs.llvm.org/show_bug.cgi?id=44247
-clang-analyzer-cplusplus.NewDeleteLeaks,
# Gives warning in dune-alugrid/dune/alugrid/3d/grid_inline.hh:49:20 for dune/xt/test/grid/dgf_gridprovider.cc:
# Call to virtual method ALU3dGrid::createALUGrid during construction bypasses virtual dispatch
-clang-analyzer-optin.cplusplus.VirtualCall,
'
WarningsAsErrors: ''
HeaderFilterRegex: '.*/(dune-xt/dune|python/dune/xt)/.*&!(.*/dune/xt/functions/mathexpr/mathexpr.hh)/.*'
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment