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
!40502
TrigCostMonitorMT+MuonRPC_CnvTools: Fix clang warnings.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
TrigCostMonitorMT+MuonRPC_CnvTools: Fix clang warnings.
ssnyder/athena:clang.TrigCostMonitorMT-20210209
into
master
Overview
2
Commits
2
Pipelines
1
Changes
2
Merged
Scott Snyder
requested to merge
ssnyder/athena:clang.TrigCostMonitorMT-20210209
into
master
4 years ago
Overview
2
Commits
2
Pipelines
1
Changes
2
Expand
Fix type for iteration over a map. Missing override keywords.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
6bc9543b
2 commits,
4 years ago
2 files
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
MuonSpectrometer/MuonCnv/MuonRPC_CnvTools/src/RpcRdoToPrepDataToolCore.h
+
3
−
3
Options
@@ -37,7 +37,7 @@ public:
RpcRdoToPrepDataToolCore
(
const
std
::
string
&
,
const
std
::
string
&
,
const
IInterface
*
);
// to allow access to the IMuonRdoToPrepDataTool interface
StatusCode
queryInterface
(
const
InterfaceID
&
riid
,
void
**
ppvIf
);
virtual
StatusCode
queryInterface
(
const
InterfaceID
&
riid
,
void
**
ppvIf
)
override
;
// setup/teardown functions, similar like those for Algorithm/Service
virtual
StatusCode
initialize
()
override
;
@@ -47,8 +47,8 @@ public:
virtual
StatusCode
decode
(
const
std
::
vector
<
uint32_t
>&
robIds
)
override
;
// debugging
void
printInputRdo
();
void
printPrepData
();
virtual
void
printInputRdo
()
override
;
virtual
void
printPrepData
()
override
;
void
printCoinData
();
// to resolve possible conflicts with IProperty::interfaceID()
Loading