Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!70009
InDetReadoutGeometry+TrkExUtils: Fix cppcheck warnings.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
InDetReadoutGeometry+TrkExUtils: Fix cppcheck warnings.
ssnyder/athena:cppcheck.InDetReadoutGeometry-20240321
into
main
Overview
3
Commits
2
Pipelines
1
Changes
2
Merged
Scott Snyder
requested to merge
ssnyder/athena:cppcheck.InDetReadoutGeometry-20240321
into
main
1 year ago
Overview
3
Commits
2
Pipelines
1
Changes
2
Expand
Copying values in range-for.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
287f0d33
2 commits,
1 year ago
2 files
+
6
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
InnerDetector/InDetDetDescr/InDetReadoutGeometry/src/InDetDetectorManager.cxx
+
4
−
4
Options
/*
Copyright (C) 2002-202
1
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-202
4
CERN for the benefit of the ATLAS collaboration
*/
@@ -261,9 +261,9 @@ namespace InDetDD
else
{
// Should not be any other keys specified in raw alignment object.
ATH_MSG_ERROR
(
"Unrecognized folder name "
<<
key
<<
". Expected names are:"
);
for
(
auto
out
:
m_globalFolders
)
ATH_MSG_ERROR
(
"--"
<<
out
);
for
(
auto
out
:
m_folders
)
ATH_MSG_ERROR
(
"--"
<<
out
);
for
(
auto
out
:
m_specialFolders
)
ATH_MSG_ERROR
(
"--"
<<
out
);
for
(
const
std
::
string
&
out
:
m_globalFolders
)
ATH_MSG_ERROR
(
"--"
<<
out
);
for
(
const
std
::
string
&
out
:
m_folders
)
ATH_MSG_ERROR
(
"--"
<<
out
);
for
(
const
std
::
string
&
out
:
m_specialFolders
)
ATH_MSG_ERROR
(
"--"
<<
out
);
return
StatusCode
::
RECOVERABLE
;
}
Loading