1.. title:: clang-tidy - bugprone-undelegated-constructor 2 3bugprone-undelegated-constructor 4================================ 5 6Finds creation of temporary objects in constructors that look like a 7function call to another constructor of the same class. 8 9The user most likely meant to use a delegating constructor or base class 10initializer. 11