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