Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-foamgrid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
extensions
dune-foamgrid
Commits
8e3ea7fd
Commit
8e3ea7fd
authored
5 years ago
by
Timo Koch
Browse files
Options
Downloads
Patches
Plain Diff
[factory] Remove unused vertexIndex data member
parent
aa01bbb9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!62
[factory] Remove unused vertexIndex data member
Pipeline
#19613
passed
5 years ago
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/foamgrid/foamgrid/foamgridfactory.hh
+2
-7
2 additions, 7 deletions
dune/foamgrid/foamgrid/foamgridfactory.hh
with
2 additions
and
7 deletions
dune/foamgrid/foamgrid/foamgridfactory.hh
+
2
−
7
View file @
8e3ea7fd
...
...
@@ -37,8 +37,7 @@ template <int dimgrid, int dimworld>
/** \brief Default constructor */
GridFactoryBase
()
:
factoryOwnsGrid_
(
true
),
vertexIndex_
(
0
)
:
factoryOwnsGrid_
(
true
)
{
grid_
=
new
FoamGrid
<
dimgrid
,
dimworld
>
;
grid_
->
entityImps_
.
resize
(
1
);
...
...
@@ -54,8 +53,7 @@ template <int dimgrid, int dimworld>
the one you supplied here.
*/
GridFactoryBase
(
FoamGrid
<
dimgrid
,
dimworld
>*
grid
)
:
factoryOwnsGrid_
(
false
),
vertexIndex_
(
0
)
:
factoryOwnsGrid_
(
false
)
{
grid_
=
grid
;
grid_
->
entityImps_
.
resize
(
1
);
...
...
@@ -121,9 +119,6 @@ template <int dimgrid, int dimworld>
// grid was handed over from the outside
bool
factoryOwnsGrid_
;
/** \brief Counter that creates the vertex indices */
unsigned
int
vertexIndex_
;
/** \brief Array containing all vertices */
std
::
vector
<
FoamGridEntityImp
<
0
,
dimgrid
,
dimworld
>*>
vertexArray_
;
};
...
...
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