Applied cppcoreguidelines-pro-type-member-init,hicpp-explicit-conversionsm,modernize-use-default-member-init clang-tidy fixes

This commit is contained in:
Bartek Kryza
2022-12-20 22:53:20 +01:00
parent 1116c3ab67
commit 682c6648be
9 changed files with 20 additions and 37 deletions

View File

@@ -77,11 +77,11 @@ public:
void complete(bool completed);
private:
id_t id_;
id_t id_{0};
std::string name_;
std::vector<relationship> relationships_;
bool nested_;
bool complete_;
bool nested_{false};
bool complete_{false};
static std::atomic_uint64_t m_nextId;
};