This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang-tools-extra.
from aa20e0a6 [clang-move] Create ClangMoveActionFactory on stack new 493f5e11 [clang-tidy] Add a clang-tidy check for possible inefficient [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: clang-tidy/performance/CMakeLists.txt | 1 + .../InefficientVectorOperationCheck.cpp | 149 +++++++++++++++++ ...onCheck.h => InefficientVectorOperationCheck.h} | 25 ++- clang-tidy/performance/PerformanceTidyModule.cpp | 3 + docs/ReleaseNotes.rst | 8 +- docs/clang-tidy/checks/list.rst | 1 + .../performance-inefficient-vector-operation.rst | 20 +++ .../performance-inefficient-vector-operation.cpp | 183 +++++++++++++++++++++ 8 files changed, 374 insertions(+), 16 deletions(-) create mode 100644 clang-tidy/performance/InefficientVectorOperationCheck.cpp copy clang-tidy/performance/{InefficientStringConcatenationCheck.h => InefficientV [...] create mode 100644 docs/clang-tidy/checks/performance-inefficient-vector-operation.rst create mode 100644 test/clang-tidy/performance-inefficient-vector-operation.cpp