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
!35597
TrigConfigSvc: Fix clang wanrnings.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
TrigConfigSvc: Fix clang wanrnings.
ssnyder/athena:clang.TrigConfigSvc-20200814
into
master
Overview
3
Commits
1
Pipelines
1
Changes
1
Merged
Scott Snyder
requested to merge
ssnyder/athena:clang.TrigConfigSvc-20200814
into
master
4 years ago
Overview
3
Commits
1
Pipelines
1
Changes
1
Expand
Missing override keywords.
0
0
Merge request reports
Viewing commit
c2e80238
Show latest version
1 file
+
17
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
c2e80238
TrigConfigSvc: Fix clang wanrnings.
· c2e80238
scott snyder
authored
4 years ago
Missing override keywords.
Trigger/TrigConfiguration/TrigConfigSvc/src/TrigConfJobOptionsSvc.h
+
17
−
9
Options
/*
Copyright (C) 2002-20
19
CERN for the benefit of the ATLAS collaboration
Copyright (C) 2002-20
20
CERN for the benefit of the ATLAS collaboration
*/
#ifndef TrigConfigSvc_JobOptionsSvc
@@ -42,38 +42,46 @@ namespace TrigConf {
/// @name IOptionsSvc interface
///@{
virtual
void
set
(
const
std
::
string
&
key
,
const
std
::
string
&
value
)
{
virtual
void
set
(
const
std
::
string
&
key
,
const
std
::
string
&
value
)
override
{
return
m_optsvc
->
set
(
key
,
value
);
}
virtual
std
::
string
get
(
const
std
::
string
&
key
,
const
std
::
string
&
default_
=
{}
)
const
{
virtual
std
::
string
get
(
const
std
::
string
&
key
,
const
std
::
string
&
default_
=
{}
)
const
override
{
return
m_optsvc
->
get
(
key
,
default_
);
}
virtual
std
::
string
pop
(
const
std
::
string
&
key
,
const
std
::
string
&
default_
=
{}
)
{
virtual
std
::
string
pop
(
const
std
::
string
&
key
,
const
std
::
string
&
default_
=
{}
)
override
{
return
m_optsvc
->
pop
(
key
,
default_
);
}
virtual
bool
has
(
const
std
::
string
&
key
)
const
{
virtual
bool
has
(
const
std
::
string
&
key
)
const
override
{
return
m_optsvc
->
has
(
key
);
}
virtual
bool
isSet
(
const
std
::
string
&
key
)
const
{
virtual
bool
isSet
(
const
std
::
string
&
key
)
const
override
{
return
m_optsvc
->
isSet
(
key
);
}
virtual
std
::
vector
<
std
::
tuple
<
std
::
string
,
std
::
string
>>
items
()
const
{
virtual
std
::
vector
<
std
::
tuple
<
std
::
string
,
std
::
string
>>
items
()
const
override
{
return
m_optsvc
->
items
();
}
virtual
void
bind
(
const
std
::
string
&
prefix
,
Gaudi
::
Details
::
PropertyBase
*
property
)
{
virtual
void
bind
(
const
std
::
string
&
prefix
,
Gaudi
::
Details
::
PropertyBase
*
property
)
override
{
return
m_optsvc
->
bind
(
prefix
,
property
);
}
// using OnlyDefaults = Gaudi::tagged_bool<class OnlyDefaults_tag>;
using
OnlyDefaults
=
Gaudi
::
Interfaces
::
IOptionsSvc
::
OnlyDefaults
;
virtual
void
broadcast
(
const
std
::
regex
&
filter
,
const
std
::
string
&
value
,
OnlyDefaults
defaults
=
OnlyDefaults
{
true
}
)
{
OnlyDefaults
defaults
=
OnlyDefaults
{
true
}
)
override
{
return
m_optsvc
->
broadcast
(
filter
,
value
,
defaults
);
}
///@}
Loading