From ffeffa2314dbe03e0ced58e0c465760b54908690 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 7 Apr 2013 17:55:36 +0300 Subject: fix cide style. Add explicit keyword to some constructors. --- src/particlecontainer.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/particlecontainer.h') diff --git a/src/particlecontainer.h b/src/particlecontainer.h index d499fa84c..a85c2da50 100644 --- a/src/particlecontainer.h +++ b/src/particlecontainer.h @@ -44,8 +44,8 @@ public: * * delParent means that the destructor should also free the parent. */ - ParticleContainer(ParticleContainer *const parent = nullptr, - const bool delParent = true); + explicit ParticleContainer(ParticleContainer *const parent = nullptr, + const bool delParent = true); A_DELETE_COPY(ParticleContainer) @@ -78,8 +78,8 @@ protected: class ParticleList final : public ParticleContainer { public: - ParticleList(ParticleContainer *const parent = nullptr, - const bool delParent = true); + explicit ParticleList(ParticleContainer *const parent = nullptr, + const bool delParent = true); A_DELETE_COPY(ParticleList) @@ -109,8 +109,8 @@ protected: class ParticleVector final : public ParticleContainer { public: - ParticleVector(ParticleContainer *const parent = nullptr, - const bool delParent = true); + explicit ParticleVector(ParticleContainer *const parent = nullptr, + const bool delParent = true); A_DELETE_COPY(ParticleVector) -- cgit v1.2.3-60-g2f50