File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ class OTFParticle
5858 if (particle.has_mothers ()) {
5959 mIndicesMother = {particle.mothersIds ().front (), particle.mothersIds ().back ()};
6060 }
61- if constexpr ( requires { particle.decayerBits (); } ) {
61+ if constexpr (requires { particle.decayerBits (); }) {
6262 mBits = particle.decayerBits ();
6363 } else {
6464 // If we are here, we created particle in the standard workflow -- without secondaries
@@ -162,7 +162,7 @@ class OTFParticle
162162 // Bits
163163 bool checkBit (DecayerBits bit) const { return mBits .test (static_cast <size_t >(bit)); }
164164 void setBit (DecayerBits bit, bool value = true ) { mBits .set (static_cast <size_t >(bit), value); }
165- void setBitOn (DecayerBits bit) { mBits .set (static_cast <size_t >(bit), true ); }
165+ void setBitOn (DecayerBits bit) { mBits .set (static_cast <size_t >(bit), true ); }
166166 void setBitOff (DecayerBits bit) { mBits .set (static_cast <size_t >(bit), false ); }
167167
168168 std::bitset<8 > getBits () const { return mBits ; }
You can’t perform that action at this time.
0 commit comments