Skip to content

Commit

Permalink
Update .clang-tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeshingles committed Oct 26, 2024
1 parent e925e40 commit bcc5f16
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,14 @@ CheckOptions:
value: google
- key: cppcoreguidelines-init-variables.MathHeader
value: <cmath>
- key: modernize-use-std-print.PrintfLikeFunctions # replace printout macro with a function when we want to autofix to use std::format gcc >=13
value: printf; absl::PrintF; printout
- key: modernize-use-std-print.PrintfLikeFunctions
value: printout
- key: modernize-use-std-print.FprintfLikeFunctions
value: fprintf; absl::FPrintF
value: absl::FPrintF
- key: modernize-use-std-print.ReplacementPrintFunction
value: printout2
- key: modernize-use-std-print.ReplacementPrintlnFunction
value: printoutln2
- key: cppcoreguidelines-narrowing-conversions.IgnoreConversionFromTypes
value: size_t;ptrdiff_t;size_type;difference_type;time_t;MPI_Aint
- key: cppcoreguidelines-narrowing-conversions.WarnOnFloatingPointNarrowingConversion
Expand Down

0 comments on commit bcc5f16

Please sign in to comment.