mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2026-06-15 08:17:05 +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
|
||||
|
||||
@@ -32,12 +32,9 @@ const std::string fair::mq::PluginManager::fgkLibPrefixAlt = "FairMQPlugin_";
|
||||
std::vector<boost::dll::shared_library> fair::mq::PluginManager::fgDLLKeepAlive =
|
||||
std::vector<boost::dll::shared_library>();
|
||||
|
||||
fair::mq::PluginManager::PluginManager()
|
||||
: fPluginServices()
|
||||
{}
|
||||
fair::mq::PluginManager::PluginManager() {}
|
||||
|
||||
fair::mq::PluginManager::PluginManager(const vector<string>& args)
|
||||
: fPluginServices()
|
||||
{
|
||||
// Parse command line options
|
||||
auto options = ProgramOptions();
|
||||
|
||||
Reference in New Issue
Block a user