Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GeoModelCore
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
GeoModelDev
GeoModelCore
Merge requests
!3
GeoGenericFunctions: Fix clang warnings.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
GeoGenericFunctions: Fix clang warnings.
ssnyder/GeoModelCore:clang.GeoGenericFunctions-20200123
into
master
Overview
1
Commits
1
Pipelines
1
Changes
33
Merged
Scott Snyder
requested to merge
ssnyder/GeoModelCore:clang.GeoGenericFunctions-20200123
into
master
5 years ago
Overview
1
Commits
1
Pipelines
1
Changes
33
Expand
clang warnings: missing/inconsistent override keywords.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
c7d32281
1 commit,
5 years ago
33 files
+
142
−
142
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
33
Search (e.g. *.vue) (Ctrl+P)
GeoGenericFunctions/GeoGenericFunctions/ACos.h
+
4
−
4
Options
@@ -31,14 +31,14 @@ namespace GeoGenfun {
ACos
(
const
ACos
&
right
);
// Retreive function value
virtual
double
operator
()(
double
argument
)
const
;
virtual
double
operator
()(
const
Argument
&
a
)
const
{
return
operator
()
(
a
[
0
]);}
virtual
double
operator
()(
double
argument
)
const
override
;
virtual
double
operator
()(
const
Argument
&
a
)
const
override
{
return
operator
()
(
a
[
0
]);}
// Derivative.
Derivative
partial
(
unsigned
int
)
const
;
virtual
Derivative
partial
(
unsigned
int
)
const
override
;
// Does this function have an analytic derivative?
virtual
bool
hasAnalyticDerivative
()
const
{
return
true
;}
virtual
bool
hasAnalyticDerivative
()
const
override
{
return
true
;}
private
:
Loading