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
Compare revisions
581d874820f8ba11804807bc21098ec43a39f44c to e6eafbe78604a7a27c7ee21f098f4c1e3704b0dc
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
am-dept/amfe
Select target project
No results found
e6eafbe78604a7a27c7ee21f098f4c1e3704b0dc
Select Git revision
Swap
Target
am-dept/amfe
Select target project
am-dept/amfe
Paul.Dechamps/amfe
2 results
581d874820f8ba11804807bc21098ec43a39f44c
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
Add missing override
· e6eafbe7
acrovato
authored
2 years ago
e6eafbe7
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
View file @
e6eafbe7
...
...
@@ -40,7 +40,7 @@ class TBOX_API Dss : public LinearSolver
public:
Dss
();
~
Dss
();
virtual
LSOLTYPE
type
()
const
{
return
LSOLTYPE
::
DSS
;
}
virtual
LSOLTYPE
type
()
const
override
{
return
LSOLTYPE
::
DSS
;
}
#ifndef SWIG
virtual
void
analyze
(
Eigen
::
SparseMatrix
<
double
>
const
&
A
)
override
;
...
...
This diff is collapsed.
Click to expand it.
tboxVtk/src/wVtkExport.h
View file @
e6eafbe7
...
...
@@ -44,7 +44,7 @@ class TBOXVTK_API VtkExport : public tbox::MshExport
public:
VtkExport
(
std
::
shared_ptr
<
tbox
::
MshData
>
_msh
);
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
;
#ifndef SWIG
...
...
This diff is collapsed.
Click to expand it.