Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-solvers
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Show more breadcrumbs
agnumpde
dune-solvers
Commits
6982ea13
Commit
6982ea13
authored
4 years ago
by
Ansgar Burchardt
Browse files
Options
Downloads
Patches
Plain Diff
canignore.hh: use default member initializer and defaulted con- and destructor
parent
5765f031
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!43
Minor cleanup
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/solvers/common/canignore.hh
+3
-6
3 additions, 6 deletions
dune/solvers/common/canignore.hh
with
3 additions
and
6 deletions
dune/solvers/common/canignore.hh
+
3
−
6
View file @
6982ea13
...
...
@@ -18,9 +18,7 @@ public:
/**
* \brief Default constructor
*/
CanIgnore
()
:
ignoreNodes_
(
nullptr
)
{}
CanIgnore
()
=
default
;
/**
* \brief Constructor from bit vector
...
...
@@ -36,8 +34,7 @@ public:
*
* Does NOT delete the bitfield!
*/
~
CanIgnore
()
{}
~
CanIgnore
()
=
default
;
/**
* \brief Set bit vector
...
...
@@ -68,7 +65,7 @@ public:
/**
* \brief A flag for each degree of freedom stating whether the dof should be ignored by the solver
*/
const
BitVectorType
*
ignoreNodes_
;
const
BitVectorType
*
ignoreNodes_
=
nullptr
;
};
...
...
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