Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Backofen, Rainer
amdis
Commits
1112b4ee
Commit
1112b4ee
authored
Feb 11, 2014
by
Praetorius, Simon
Browse files
Generic operators updated
parent
e9ff7ce9
Changes
1
Hide whitespace changes
Inline
Side-by-side
AMDiS/src/expressions/AtomicExpression.h
View file @
1112b4ee
...
...
@@ -308,18 +308,18 @@ namespace result_of {
}
result_of
::
Coords
X
()
{
return
result_of
::
Coords
();
}
inline
result_of
::
Coords
X
()
{
return
result_of
::
Coords
();
}
template
<
int
I
>
result_of
::
Coord
<
I
>
X
()
{
return
result_of
::
Coord
<
I
>
();
}
inline
result_of
::
Coord
<
I
>
X
()
{
return
result_of
::
Coord
<
I
>
();
}
result_of
::
Normals
N
(
int
side
)
{
return
result_of
::
Normals
(
side
);
}
result_of
::
Normal
N
(
int
side
,
int
I
)
{
return
result_of
::
Normal
(
side
,
I
);
}
inline
result_of
::
Normals
N
(
int
side
)
{
return
result_of
::
Normals
(
side
);
}
inline
result_of
::
Normal
N
(
int
side
,
int
I
)
{
return
result_of
::
Normal
(
side
,
I
);
}
result_of
::
ElementNormals
M
()
{
return
result_of
::
ElementNormals
();
}
result_of
::
ElementNormal
M
(
int
I
)
{
return
result_of
::
ElementNormal
(
I
);
}
inline
result_of
::
ElementNormals
M
()
{
return
result_of
::
ElementNormals
();
}
inline
result_of
::
ElementNormal
M
(
int
I
)
{
return
result_of
::
ElementNormal
(
I
);
}
template
<
typename
T
>
result_of
::
Const
<
T
>
constant
(
const
T
&
value
)
{
return
result_of
::
Const
<
T
>
(
value
);
}
inline
result_of
::
Const
<
T
>
constant
(
const
T
&
value
)
{
return
result_of
::
Const
<
T
>
(
value
);
}
namespace
Private
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment