We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08303cc commit 5710becCopy full SHA for 5710bec
1 file changed
GPU/GPUTracking/DataTypes/TPCPadBitMap.h
@@ -79,7 +79,7 @@ struct TPCPadBitMap {
79
const auto word = globalPad / (sizeof(T) * 8);
80
const auto pos = globalPad % (sizeof(T) * 8);
81
const auto mask = T(1) << pos;
82
- mDeadChannelMap[word] = mDeadChannelMap[word] & ~mask | (T(c) << pos);
+ mDeadChannelMap[word] = (mDeadChannelMap[word] & ~mask) | (T(c) << pos);
83
}
84
85
GPUdi() bool get(unsigned short globalPad) const
0 commit comments