Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
amfe
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Aerospace and Mechanical Engineering
amfe
Commits
e6eafbe7
Commit
e6eafbe7
authored
2 years ago
by
acrovato
Browse files
Options
Downloads
Patches
Plain Diff
Add missing override
parent
581d8748
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!6
amfe v1.0.5
Pipeline
#7241
passed
2 years ago
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tbox/src/wDss.h
+1
-1
1 addition, 1 deletion
tbox/src/wDss.h
tboxVtk/src/wVtkExport.h
+1
-1
1 addition, 1 deletion
tboxVtk/src/wVtkExport.h
with
2 additions
and
2 deletions
tbox/src/wDss.h
+
1
−
1
View file @
e6eafbe7
...
@@ -40,7 +40,7 @@ class TBOX_API Dss : public LinearSolver
...
@@ -40,7 +40,7 @@ class TBOX_API Dss : public LinearSolver
public:
public:
Dss
();
Dss
();
~
Dss
();
~
Dss
();
virtual
LSOLTYPE
type
()
const
{
return
LSOLTYPE
::
DSS
;
}
virtual
LSOLTYPE
type
()
const
override
{
return
LSOLTYPE
::
DSS
;
}
#ifndef SWIG
#ifndef SWIG
virtual
void
analyze
(
Eigen
::
SparseMatrix
<
double
>
const
&
A
)
override
;
virtual
void
analyze
(
Eigen
::
SparseMatrix
<
double
>
const
&
A
)
override
;
...
...
This diff is collapsed.
Click to expand it.
tboxVtk/src/wVtkExport.h
+
1
−
1
View file @
e6eafbe7
...
@@ -44,7 +44,7 @@ class TBOXVTK_API VtkExport : public tbox::MshExport
...
@@ -44,7 +44,7 @@ class TBOXVTK_API VtkExport : public tbox::MshExport
public:
public:
VtkExport
(
std
::
shared_ptr
<
tbox
::
MshData
>
_msh
);
VtkExport
(
std
::
shared_ptr
<
tbox
::
MshData
>
_msh
);
virtual
~
VtkExport
();
virtual
~
VtkExport
();
virtual
tbox
::
WRTTYPE
type
()
const
{
return
tbox
::
WRTTYPE
::
VTK
;
}
virtual
tbox
::
WRTTYPE
type
()
const
override
{
return
tbox
::
WRTTYPE
::
VTK
;
}
virtual
void
save
(
std
::
string
const
&
fname
)
const
override
;
virtual
void
save
(
std
::
string
const
&
fname
)
const
override
;
#ifndef SWIG
#ifndef SWIG
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment