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
5e5c60c6
Commit
5e5c60c6
authored
9 years ago
by
Carsten Gräser
Browse files
Options
Downloads
Patches
Plain Diff
[cleanup] Remove non-necessary namespace qualifiers
parent
cc038f05
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/solvers/common/algorithm.hh
+6
-6
6 additions, 6 deletions
dune/solvers/common/algorithm.hh
with
6 additions
and
6 deletions
dune/solvers/common/algorithm.hh
+
6
−
6
View file @
5e5c60c6
...
@@ -82,7 +82,7 @@ namespace Imp {
...
@@ -82,7 +82,7 @@ namespace Imp {
template
<
class
T
>
template
<
class
T
>
constexpr
auto
size
(
const
T
&
t
)
constexpr
auto
size
(
const
T
&
t
)
{
{
return
Hybrid
::
Imp
::
size
(
&
t
,
PriorityTag
<
42
>
());
return
Imp
::
size
(
&
t
,
PriorityTag
<
42
>
());
}
}
...
@@ -133,7 +133,7 @@ namespace Imp {
...
@@ -133,7 +133,7 @@ namespace Imp {
template
<
class
Container
,
class
Index
>
template
<
class
Container
,
class
Index
>
constexpr
decltype
(
auto
)
elementAt
(
Container
&&
c
,
Index
&&
i
)
constexpr
decltype
(
auto
)
elementAt
(
Container
&&
c
,
Index
&&
i
)
{
{
return
Hybrid
::
Imp
::
elementAt
(
std
::
forward
<
Container
>
(
c
),
std
::
forward
<
Index
>
(
i
),
PriorityTag
<
42
>
());
return
Imp
::
elementAt
(
std
::
forward
<
Container
>
(
c
),
std
::
forward
<
Index
>
(
i
),
PriorityTag
<
42
>
());
}
}
...
@@ -222,7 +222,7 @@ namespace Imp {
...
@@ -222,7 +222,7 @@ namespace Imp {
template
<
class
Begin
,
class
End
>
template
<
class
Begin
,
class
End
>
constexpr
auto
integralRange
(
const
Begin
&
begin
,
const
End
&
end
)
constexpr
auto
integralRange
(
const
Begin
&
begin
,
const
End
&
end
)
{
{
return
Hybrid
::
Imp
::
integralRange
(
begin
,
end
,
PriorityTag
<
42
>
());
return
Imp
::
integralRange
(
begin
,
end
,
PriorityTag
<
42
>
());
}
}
/**
/**
...
@@ -239,7 +239,7 @@ constexpr auto integralRange(const Begin& begin, const End& end)
...
@@ -239,7 +239,7 @@ constexpr auto integralRange(const Begin& begin, const End& end)
template
<
class
End
>
template
<
class
End
>
constexpr
auto
integralRange
(
const
End
&
end
)
constexpr
auto
integralRange
(
const
End
&
end
)
{
{
return
Hybrid
::
Imp
::
integralRange
(
Dune
::
Indices
::
_0
,
end
,
PriorityTag
<
42
>
());
return
Imp
::
integralRange
(
Dune
::
Indices
::
_0
,
end
,
PriorityTag
<
42
>
());
}
}
...
@@ -294,7 +294,7 @@ namespace Imp {
...
@@ -294,7 +294,7 @@ namespace Imp {
template
<
class
Range
,
class
F
>
template
<
class
Range
,
class
F
>
constexpr
void
forEach
(
Range
&&
range
,
F
&&
f
)
constexpr
void
forEach
(
Range
&&
range
,
F
&&
f
)
{
{
Hybrid
::
Imp
::
forEach
(
std
::
forward
<
Range
>
(
range
),
std
::
forward
<
F
>
(
f
),
PriorityTag
<
42
>
());
Imp
::
forEach
(
std
::
forward
<
Range
>
(
range
),
std
::
forward
<
F
>
(
f
),
PriorityTag
<
42
>
());
}
}
...
@@ -389,7 +389,7 @@ namespace Imp {
...
@@ -389,7 +389,7 @@ namespace Imp {
template
<
class
T1
,
class
T2
>
template
<
class
T1
,
class
T2
>
constexpr
auto
equals
(
T1
&&
t1
,
T2
&&
t2
)
constexpr
auto
equals
(
T1
&&
t1
,
T2
&&
t2
)
{
{
return
Hybrid
::
Imp
::
equals
(
std
::
forward
<
T1
>
(
t1
),
std
::
forward
<
T2
>
(
t2
),
PriorityTag
<
1
>
());
return
Imp
::
equals
(
std
::
forward
<
T1
>
(
t1
),
std
::
forward
<
T2
>
(
t2
),
PriorityTag
<
1
>
());
}
}
...
...
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