xref: /llvm-project/clang-tools-extra/docs/clang-tidy/checks/performance/move-constructor-init.rst (revision 6e566bc5523f743bc34a7e26f050f1f2b4d699a8)
1.. title:: clang-tidy - performance-move-constructor-init
2
3performance-move-constructor-init
4=================================
5
6"cert-oop11-cpp" redirects here as an alias for this check.
7
8The check flags user-defined move constructors that have a ctor-initializer
9initializing a member or base class through a copy constructor instead of a
10move constructor.
11