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
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
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
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
Core Modules
dune-common
Commits
39bc44a9
Commit
39bc44a9
authored
14 years ago
by
Christian Engwer
Browse files
Options
Downloads
Patches
Plain Diff
make doxygen happy
[[Imported from SVN: r6106]]
parent
47ff4c59
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/common/enumset.hh
+5
-5
5 additions, 5 deletions
dune/common/enumset.hh
with
5 additions
and
5 deletions
dune/common/enumset.hh
+
5
−
5
View file @
39bc44a9
...
...
@@ -81,7 +81,7 @@ namespace Dune
* @brief The type the set holds.
*/
typedef
TA
Type
;
static
bool
contains
(
const
T
A
&
item
);
static
bool
contains
(
const
T
ype
&
item
);
};
/**
...
...
@@ -112,19 +112,19 @@ namespace Dune
};
template
<
typename
TA
>
inline
bool
EmptySet
<
TA
>::
contains
(
const
T
A
&
attribute
)
inline
bool
EmptySet
<
TA
>::
contains
(
const
T
ype
&
attribute
)
{
return
false
;
}
template
<
typename
TA
>
inline
bool
AllSet
<
TA
>::
contains
(
const
T
A
&
attribute
)
inline
bool
AllSet
<
TA
>::
contains
(
const
T
ype
&
attribute
)
{
return
true
;
}
template
<
typename
TA
,
int
i
>
inline
bool
EnumItem
<
TA
,
i
>::
contains
(
const
T
A
&
item
)
inline
bool
EnumItem
<
TA
,
i
>::
contains
(
const
T
ype
&
item
)
{
return
item
==
i
;
}
...
...
@@ -136,7 +136,7 @@ namespace Dune
}
template
<
typename
TA
,
int
from
,
int
to
>
inline
bool
EnumRange
<
TA
,
from
,
to
>::
contains
(
const
T
A
&
item
)
inline
bool
EnumRange
<
TA
,
from
,
to
>::
contains
(
const
T
ype
&
item
)
{
return
from
<=
item
&&
item
<=
to
;
}
...
...
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