brintos

brintos / llvm-project-archived public Read only

0
0
Text · 337 B · b32ed38 Raw
11 lines · plain
1.. title:: clang-tidy - bugprone-undelegated-constructor2 3bugprone-undelegated-constructor4================================5 6Finds creation of temporary objects in constructors that look like a7function call to another constructor of the same class.8 9The user most likely meant to use a delegating constructor or base class10initializer.11