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
!73373
MuonDigitContainer+MuonCablingTools+RPC_CondCabling: Fix cppcheck 2.14 warnings.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
MuonDigitContainer+MuonCablingTools+RPC_CondCabling: Fix cppcheck 2.14 warnings.
ssnyder/athena:cppcheck.MuonDigitContainer-20240726
into
main
Overview
2
Commits
3
Pipelines
1
Changes
3
Merged
Scott Snyder
requested to merge
ssnyder/athena:cppcheck.MuonDigitContainer-20240726
into
main
6 months ago
Overview
2
Commits
3
Pipelines
1
Changes
3
Expand
Prefer returning const references to members rather than copies.
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
c227df59
3 commits,
6 months ago
3 files
+
8
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
MuonSpectrometer/MuonCablings/MuonCablingTools/MuonCablingTools/BaseObject.h
+
2
−
2
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
*/
#ifndef MUONCABLINGTOOLS_LVL1OBJECT_H
@@ -20,7 +20,7 @@ public:
virtual
~
BaseObject
()
=
default
;
ObjectType
tag
()
const
{
return
m_tag
;
}
std
::
string
name
()
const
{
return
m_name
;
}
const
std
::
string
&
name
()
const
{
return
m_name
;
}
virtual
void
Print
(
std
::
ostream
&
,
bool
)
const
{}
};
Loading