main-coverity-FPGATrackSimConfTools
track.getBarcode() == std::numeric_limits<long>::max())
always returns false, as track.getBarcode returns a uint32_t.
Use correct type for max comparison.
Edited by Shaun Roe
track.getBarcode() == std::numeric_limits<long>::max())
always returns false, as track.getBarcode returns a uint32_t.
Use correct type for max comparison.