IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 06b5264a authored by ralfulrich's avatar ralfulrich
Browse files

prevent warning, add comment

parent 0be024ca
No related branches found
No related tags found
No related merge requests found
......@@ -30,9 +30,10 @@ namespace corsika::particles {
Code ConvertFromPDG(PDGCode p) {
static_assert(detail::conversionArray.size() % 2 == 1);
auto constexpr maxPDG{(detail::conversionArray.size() - 1) >> 1};
// this will fail, for the strange case where the maxPDG is negative...
unsigned int constexpr maxPDG{(detail::conversionArray.size() - 1) >> 1};
auto k = static_cast<PDGCodeType>(p);
if (abs(k) <= maxPDG) {
if ((unsigned int)abs(k) <= maxPDG) {
return detail::conversionArray[k + maxPDG];
} else {
return detail::conversionMap.at(p);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment