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
!39179
InDetMultipleVertexSeedFinder: Fix clang warnings.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
InDetMultipleVertexSeedFinder: Fix clang warnings.
ssnyder/athena:clang.InDetMultipleVertexSeedFinder-20201214
into
master
Overview
2
Commits
1
Pipelines
1
Changes
3
Merged
Scott Snyder
requested to merge
ssnyder/athena:clang.InDetMultipleVertexSeedFinder-20201214
into
master
4 years ago
Overview
2
Commits
1
Pipelines
1
Changes
3
Expand
Missing override keywords.
0
0
Merge request reports
Viewing commit
8feced04
Show latest version
3 files
+
9
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
8feced04
InDetMultipleVertexSeedFinder: Fix clang warnings.
· 8feced04
scott snyder
authored
4 years ago
Missing override keywords.
InnerDetector/InDetRecTools/InDetMultipleVertexSeedFinder/InDetMultipleVertexSeedFinder/DivisiveMultiSeedFinder.h
+
3
−
3
Options
@@ -41,11 +41,11 @@ namespace InDet
/**
* Clustering method itself
*/
std
::
vector
<
std
::
vector
<
const
Trk
::
Track
*>
>
seeds
(
const
std
::
vector
<
const
Trk
::
Track
*>&
tracks
)
const
;
virtual
std
::
vector
<
std
::
vector
<
const
Trk
::
Track
*>
>
seeds
(
const
std
::
vector
<
const
Trk
::
Track
*>&
tracks
)
const
override
;
std
::
vector
<
std
::
vector
<
const
Trk
::
TrackParticleBase
*>
>
seeds
(
const
std
::
vector
<
const
Trk
::
TrackParticleBase
*>&
tracks
)
const
;
virtual
std
::
vector
<
std
::
vector
<
const
Trk
::
TrackParticleBase
*>
>
seeds
(
const
std
::
vector
<
const
Trk
::
TrackParticleBase
*>&
tracks
)
const
override
;
std
::
vector
<
std
::
vector
<
const
Trk
::
TrackParameters
*>
>
seeds
(
const
std
::
vector
<
const
xAOD
::
TrackParticle
*>&
tracks
)
const
;
virtual
std
::
vector
<
std
::
vector
<
const
Trk
::
TrackParameters
*>
>
seeds
(
const
std
::
vector
<
const
xAOD
::
TrackParticle
*>&
tracks
)
const
override
;
private:
Loading