Bug 1609864 - For clang-tidy disable checker performance-noexcept-move-constructor. r=sylvestre

Since we don't build use exceptions nor we use STL containers that rely on this when choosing copy
 from move ctors, if these are not marked with noexcept, we should disable this checker since
 it brings only noise to our analysis.

Differential Revision: https://phabricator.services.mozilla.com/D60218

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andi-Bogdan Postelnicu 2020-01-17 08:49:01 +00:00
parent d0c0679aac
commit 678216c088

View File

@ -203,6 +203,8 @@ clang_checkers:
reliability: high
- name: performance-noexcept-move-constructor
reliability: high
# Bug 1609864 - we don't use STL containers
publish: !!bool no
- name: performance-type-promotion-in-math-fn
reliability: high
- name: performance-unnecessary-copy-initialization