Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
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
Timo Koch
dune-common
Commits
fd8ab91c
Commit
fd8ab91c
authored
20 years ago
by
Robert Klöfkorn
Browse files
Options
Downloads
Patches
Plain Diff
Added const version of getRealEntity, for the compiler not to bitch.
[[Imported from SVN: r1611]]
parent
fc4be3f6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
grid/onedgrid.hh
+5
-0
5 additions, 0 deletions
grid/onedgrid.hh
grid/sgrid.hh
+3
-0
3 additions, 0 deletions
grid/sgrid.hh
grid/yaspgrid.hh
+4
-0
4 additions, 0 deletions
grid/yaspgrid.hh
with
12 additions
and
0 deletions
grid/onedgrid.hh
+
5
−
0
View file @
fd8ab91c
...
...
@@ -295,6 +295,11 @@ namespace Dune {
return
entity
.
realEntity
;
}
template
<
int
cd
>
const
OneDGridEntity
<
cd
,
dim
,
const
OneDGrid
>&
getRealEntity
(
const
typename
Traits
::
template
codim
<
cd
>
::
Entity
&
entity
)
const
{
return
entity
.
realEntity
;
}
//! The type of grid refinement currently in use
RefinementType
refinementType_
;
...
...
This diff is collapsed.
Click to expand it.
grid/sgrid.hh
+
3
−
0
View file @
fd8ab91c
...
...
@@ -891,6 +891,9 @@ namespace Dune {
template
<
int
codim
>
SEntity
<
codim
,
dim
,
const
SGrid
<
dim
,
dimworld
>
>&
getRealEntity
(
typename
Traits
::
template
codim
<
codim
>
::
Entity
&
e
);
template
<
int
codim
>
const
SEntity
<
codim
,
dim
,
const
SGrid
<
dim
,
dimworld
>
>&
getRealEntity
(
const
typename
Traits
::
template
codim
<
codim
>
::
Entity
&
e
)
const
;
template
<
int
codim_
,
int
dim_
,
class
GridImp_
,
template
<
int
,
int
,
class
>
class
EntityImp_
>
friend
class
Entity
;
...
...
This diff is collapsed.
Click to expand it.
grid/yaspgrid.hh
+
4
−
0
View file @
fd8ab91c
...
...
@@ -1706,6 +1706,10 @@ namespace Dune {
YaspEntity
<
codim
,
dim
,
const
YaspGrid
<
dim
,
dimworld
>
>&
getRealEntity
(
typename
Traits
::
template
codim
<
codim
>
::
Entity
&
e
);
template
<
int
codim
>
const
YaspEntity
<
codim
,
dim
,
const
YaspGrid
<
dim
,
dimworld
>
>&
getRealEntity
(
const
typename
Traits
::
template
codim
<
codim
>
::
Entity
&
e
)
const
;
template
<
int
codim_
,
int
dim_
,
class
GridImp_
,
template
<
int
,
int
,
class
>
class
EntityImp_
>
friend
class
Entity
;
...
...
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