Files
linux-packaging-mono/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/misc-undelegated-constructor.rst

12 lines
326 B
ReStructuredText
Raw Normal View History

.. title:: clang-tidy - misc-undelegated-constructor
misc-undelegated-constructor
============================
Finds creation of temporary objects in constructors that look like a
function call to another constructor of the same class.
The user most likely meant to use a delegating constructor or base class
initializer.