blob: a640e16e3c099fb82a5bf34958684afa227bd8dd [file] [log] [blame]
.. title:: clang-tidy - readability-redundant-member-init
readability-redundant-member-init
=================================
Finds member initializations that are unnecessary because the same default
constructor would be called if they were not present.
Example:
.. code-block:: c++
// Explicitly initializing the member s is unnecessary.
class Foo {
public:
Foo() : s() {}
private:
std::string s;
};