Skip to content
Snippets Groups Projects
Commit 266bec60 authored by Vakhtang Tsulaia's avatar Vakhtang Tsulaia
Browse files

Merge branch 'cppcheck.TRT_ReadoutGeometry-20240108' into 'main'

TRT_ReadoutGeometry+PixelReadoutGeometry: Fix cppcheck warnings.

See merge request !68067
parents aca3c8fc c5990d3c
No related merge requests found
......@@ -600,6 +600,10 @@ namespace InDetDD {
return alignmentChange;
}
}
// Avoid cppcheck warning.
if (!atrlistcol) {
return alignmentChange;
}
{
// loop over objects in collection
//cppcheck-suppress nullPointerRedundantCheck
......
......@@ -545,6 +545,10 @@ namespace InDetDD {
return alignmentChange;
}
}
// Avoid cppcheck warning.
if (!atrlistcol) {
return alignmentChange;
}
{
// loop over objects in collection
//cppcheck-suppress nullPointerRedundantCheck
......
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