From 6911ad8fce8553c81762d3ada63ee706df43b9ff Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Sat, 15 Jun 2019 13:07:09 +0200 Subject: [PATCH] Remove performance-unnecessary-copy-initialization clang-tidy check Applying its fixes breaks building when using clnag 8.0 :-( --- .clang-tidy | 1 - docs/changelog | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index bfb1b252c..3515d6a2a 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -32,7 +32,6 @@ Checks: '-*, performance-inefficient-algorithm, performance-move-const-arg, performance-type-promotion-in-math-fn, - performance-unnecessary-copy-initialization, performance-unnecessary-value-param, readability-container-size-empty, readability-identifier-naming, diff --git a/docs/changelog b/docs/changelog index b816abbc7..25156e270 100644 --- a/docs/changelog +++ b/docs/changelog @@ -16,7 +16,7 @@ - Improved preamble detection implementation in the decoding of navigation messages (acceleration by x1.6 on average per channel). - Shortened Acquisition to Tracking transition time. -- Applied clang-tidy checks and fixes related to performance: performance-faster-string-find, performance-inefficient-algorithm, performance-move-const-arg, performance-type-promotion-in-math-fn, performance-unnecessary-copy-initialization, performance-unnecessary-value-param, readability-string-compare. +- Applied clang-tidy checks and fixes related to performance: performance-faster-string-find, performance-inefficient-algorithm, performance-move-const-arg, performance-type-promotion-in-math-fn, performance-unnecessary-value-param, readability-string-compare. ### Improvements in Flexibility: