Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ CheckOptions:

- key: misc-include-cleaner.IgnoreHeaders
value: 'petsc.*\.h;mpi\.h'

- key: readability-qualified-auto.IgnoreAliasing
value: 'false'

- key: readability-qualified-auto.AllowedTypes
value: 'MPI_Comm'
---

Disabled checks and reasons:
Expand Down
2 changes: 1 addition & 1 deletion src/invert/laplacexy/impls/petsc/laplacexy-petsc.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ LaplaceXYpetsc::LaplaceXYpetsc(Mesh* m, Options* opt, const CELL_LOC loc)
default_prefix = opt->name();

// Get MPI communicator
auto* comm = BoutComm::get();
auto comm = BoutComm::get();
Comment thread
ZedThree marked this conversation as resolved.

// Local size
const int localN = localSize();
Expand Down
Loading