Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
167
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
!42847
MuonPRDTest: Fix clang warning.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
MuonPRDTest: Fix clang warning.
ssnyder/athena:clang.MuonPRDTest-20210422
into
master
Overview
2
Commits
1
Pipelines
1
Changes
1
Merged
Scott Snyder
requested to merge
ssnyder/athena:clang.MuonPRDTest-20210422
into
master
3 years ago
Overview
2
Commits
1
Pipelines
1
Changes
1
Expand
Spurious copy in range-for.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
c3f9fc4e
1 commit,
3 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
MuonSpectrometer/MuonValidation/MuonPRDTest/src/RPCSDOVariables.cxx
+
1
−
1
Options
@@ -18,7 +18,7 @@ StatusCode RpcSDOVariables::fillVariables(const MuonGM::MuonDetectorManager* Muo
const
MuonSimDataCollection
*
mdtSdoContainer
=
nullptr
;
ATH_CHECK
(
m_evtStore
->
retrieve
(
mdtSdoContainer
,
m_ContainerName
.
c_str
())
);
for
(
const
auto
coll
:
*
mdtSdoContainer
)
{
for
(
const
auto
&
coll
:
*
mdtSdoContainer
)
{
const
Identifier
id
=
coll
.
first
;
const
MuonSimData
mdt_sdo
=
coll
.
second
;
Loading