Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
gaoqiong
MIGraphX
Commits
c802916a
Commit
c802916a
authored
Oct 19, 2018
by
Paul
Browse files
Workaround compiler bug in gcc 5
parent
80a0627d
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/include/migraph/operation.hpp
src/include/migraph/operation.hpp
+1
-1
tools/include/operation.hpp
tools/include/operation.hpp
+1
-1
No files found.
src/include/migraph/operation.hpp
View file @
c802916a
...
...
@@ -57,7 +57,7 @@ auto operator<<(std::ostream& os, const T& x) -> decltype(os << x.name())
{
os
<<
x
.
name
();
char
delim
=
'['
;
reflect_each
(
x
,
[
&
](
auto
&
y
,
auto
name
,
auto
&&
...
)
{
reflect_each
(
x
,
[
&
](
auto
&
y
,
auto
name
)
{
os
<<
delim
;
os
<<
name
<<
"="
;
stream_write_value
(
os
,
y
);
...
...
tools/include/operation.hpp
View file @
c802916a
...
...
@@ -57,7 +57,7 @@ auto operator<<(std::ostream& os, const T& x) -> decltype(os << x.name())
{
os
<<
x
.
name
();
char
delim
=
'['
;
reflect_each
(
x
,
[
&
](
auto
&
y
,
auto
name
,
auto
&&
...
)
{
reflect_each
(
x
,
[
&
](
auto
&
y
,
auto
name
)
{
os
<<
delim
;
os
<<
name
<<
"="
;
stream_write_value
(
os
,
y
);
...
...
Write
Preview
Markdown
is supported
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