IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 19daaf57 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

changed reinterpret_cast to static_cast

parent 550a3dcc
No related branches found
No related tags found
1 merge request!520Resolve "Wrong indexing for nested ProcessSequences?"
Pipeline #10967 passed
......@@ -123,7 +123,7 @@ namespace corsika {
ret |= A_.doContinuous(
step, limitId == ContinuousProcessIndex(
reinterpret_cast<void const*>(std::addressof(A_))));
static_cast<void const*>(std::addressof(A_))));
}
}
......@@ -146,7 +146,7 @@ namespace corsika {
ret |= B_.doContinuous(
step, limitId == ContinuousProcessIndex(
reinterpret_cast<void const*>(std::addressof(B_))));
static_cast<void const*>(std::addressof(B_))));
}
}
......@@ -285,7 +285,7 @@ namespace corsika {
ContinuousProcessStepLength const step(
A_.getMaxStepLength(particle, vTrack),
ContinuousProcessIndex(reinterpret_cast<void const*>(std::addressof(A_))));
ContinuousProcessIndex(static_cast<void const*>(std::addressof(A_))));
max_length = std::min(max_length, step);
}
}
......@@ -306,7 +306,7 @@ namespace corsika {
ContinuousProcessStepLength const step(
B_.getMaxStepLength(particle, vTrack),
ContinuousProcessIndex(reinterpret_cast<void const*>(std::addressof(B_))));
ContinuousProcessIndex(static_cast<void const*>(std::addressof(B_))));
max_length = std::min(max_length, step);
}
}
......
......@@ -101,7 +101,7 @@ namespace corsika {
return A_.doContinuous(
step, idLimit == ContinuousProcessIndex(
reinterpret_cast<void const*>(std::addressof(A_))));
static_cast<void const*>(std::addressof(A_))));
}
} else {
if constexpr (process2_type::is_process_sequence) {
......@@ -124,7 +124,7 @@ namespace corsika {
return B_.doContinuous(
step, idLimit == ContinuousProcessIndex(
reinterpret_cast<void const*>(std::addressof(B_))));
static_cast<void const*>(std::addressof(B_))));
}
}
return ProcessReturn::Ok;
......@@ -190,7 +190,7 @@ namespace corsika {
return ContinuousProcessStepLength(
A_.getMaxStepLength(particle, vTrack),
ContinuousProcessIndex(reinterpret_cast<void const*>(std::addressof(A_))));
ContinuousProcessIndex(static_cast<void const*>(std::addressof(A_))));
}
} else {
if constexpr (process2_type::is_process_sequence) {
......@@ -207,7 +207,7 @@ namespace corsika {
return ContinuousProcessStepLength(
B_.getMaxStepLength(particle, vTrack),
ContinuousProcessIndex(reinterpret_cast<void const*>(std::addressof(B_))));
ContinuousProcessIndex(static_cast<void const*>(std::addressof(B_))));
}
}
......
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