mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2026-07-12 02:01:36 +00:00
style: drop redundant member initializers
- remove constructor member initializers that duplicate the default member initialization - clang-tidy readability-redundant-member-init https://clang.llvm.org/extra/clang-tidy/checks/readability/redundant-member-init.html
This commit is contained in:
committed by
Dennis Klein
parent
d2aa2f10de
commit
4dfe24d411
@@ -87,7 +87,7 @@ struct Parts
|
||||
const_iterator end() const noexcept { return fParts.end(); }
|
||||
const_iterator cend() const noexcept { return fParts.cend(); }
|
||||
|
||||
container fParts{};
|
||||
container fParts;
|
||||
};
|
||||
|
||||
} // namespace fair::mq
|
||||
|
||||
Reference in New Issue
Block a user