Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-alugrid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
ag-ohlberger
dune-community
dune-alugrid
Commits
371804a6
Commit
371804a6
authored
9 years ago
by
Robert K
Browse files
Options
Downloads
Patches
Plain Diff
[bugfix] fix constructors.
parent
6831d9ef
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/alugrid/3d/gridfactory.hh
+4
-6
4 additions, 6 deletions
dune/alugrid/3d/gridfactory.hh
with
4 additions
and
6 deletions
dune/alugrid/3d/gridfactory.hh
+
4
−
6
View file @
371804a6
...
@@ -404,16 +404,14 @@ namespace Dune
...
@@ -404,16 +404,14 @@ namespace Dune
{}
{}
/** \brief constructor taking filename */
/** \brief constructor taking filename */
GridFactory
(
const
std
::
string
&
filename
,
explicit
GridFactory
(
const
std
::
string
&
filename
,
const
MPICommunicatorType
&
communicator
=
Grid
::
defaultCommunicator
()
)
const
MPICommunicatorType
&
communicator
=
Grid
::
defaultCommunicator
()
)
:
BaseType
(
filename
,
communicator
)
:
BaseType
(
filename
,
communicator
)
{}
{}
protected
:
template
<
class
,
class
,
int
>
friend
class
ALULocalGeometryStorage
;
/** \brief constructor taking verbosity flag */
/** \brief constructor taking verbosity flag */
GridFactory
(
const
bool
realGrid
,
explicit
GridFactory
(
const
bool
realGrid
,
const
MPICommunicatorType
&
communicator
)
const
MPICommunicatorType
&
communicator
=
Grid
::
defaultCommunicator
(
)
)
:
BaseType
(
realGrid
,
communicator
)
:
BaseType
(
realGrid
,
communicator
)
{}
{}
};
};
...
...
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