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
!20132
ISF_Algorithms: Fix clang warning.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
ISF_Algorithms: Fix clang warning.
ssnyder/athena:clang2.ISF_Algorithms-20181228
into
master
Overview
3
Commits
1
Pipelines
1
Changes
1
Merged
Scott Snyder
requested to merge
ssnyder/athena:clang2.ISF_Algorithms-20181228
into
master
6 years ago
Overview
3
Commits
1
Pipelines
1
Changes
1
Expand
Clang warning: missing inconsistent use of override keyword.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
a25dcfad
1 commit,
6 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Simulation/ISF/ISF_Core/ISF_Algorithms/test/SimKernelMT_test.cxx
+
1
−
1
Options
@@ -112,7 +112,7 @@ public:
ServiceHandle
<
ISF
::
ISimulationSvc
>*
simulator
()
{
return
nullptr
;
};
bool
isDynamic
()
{
return
false
;
};
ISF
::
SimSvcID
simSvcID
()
{
return
0
;
};
virtual
ISF
::
SimulationFlavor
simFlavor
()
override
{
return
ISF
::
Fatras
;
}
virtual
ISF
::
SimulationFlavor
simFlavor
()
{
return
ISF
::
Fatras
;
}
void
initializeSelector
()
{
};
void
beginEvent
()
{
};
void
endEvent
()
{
};
Loading