Skip to content

Commit 39bb677

Browse files
committed
Please consider the following formatting changes
1 parent 8b01d53 commit 39bb677

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ALICE3/Core/OTFParticle.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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; }

0 commit comments

Comments
 (0)