Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
FORMUS3IC_LAS3
/
embb
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
466fcc35
authored
Oct 13, 2014
by
Marcus Winter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dataflow_cpp: fixed gcc issue
parent
e1deba5b
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
dataflow_cpp/include/embb/dataflow/internal/constant_source.h
+1
-1
dataflow_cpp/include/embb/dataflow/internal/process.h
+1
-1
dataflow_cpp/include/embb/dataflow/internal/select.h
+1
-1
dataflow_cpp/include/embb/dataflow/internal/source.h
+1
-1
dataflow_cpp/include/embb/dataflow/internal/switch.h
+1
-1
No files found.
dataflow_cpp/include/embb/dataflow/internal/constant_source.h
View file @
466fcc35
...
...
@@ -71,7 +71,7 @@ class ConstantSource
template
<
typename
T
>
void
operator
>>
(
T
&
target
)
{
GetOutput
<
0
>
()
>>
target
.
GetInput
<
0
>
();
GetOutput
<
0
>
()
>>
target
.
template
GetInput
<
0
>
();
}
};
...
...
dataflow_cpp/include/embb/dataflow/internal/process.h
View file @
466fcc35
...
...
@@ -100,7 +100,7 @@ class Process< Slices, Serial, Inputs<Slices, I1, I2, I3, I4, I5>,
template
<
typename
T
>
void
operator
>>
(
T
&
target
)
{
GetOutput
<
0
>
()
>>
target
.
GetInput
<
0
>
();
GetOutput
<
0
>
()
>>
target
.
template
GetInput
<
0
>
();
}
virtual
void
OnClock
(
int
clock
)
{
...
...
dataflow_cpp/include/embb/dataflow/internal/select.h
View file @
466fcc35
...
...
@@ -101,7 +101,7 @@ class Select
template
<
typename
T
>
void
operator
>>
(
T
&
target
)
{
GetOutput
<
0
>
()
>>
target
.
GetInput
<
0
>
();
GetOutput
<
0
>
()
>>
target
.
template
GetInput
<
0
>
();
}
virtual
void
OnClock
(
int
clock
)
{
...
...
dataflow_cpp/include/embb/dataflow/internal/source.h
View file @
466fcc35
...
...
@@ -83,7 +83,7 @@ class Source< Slices, Outputs<Slices, O1, O2, O3, O4, O5> >
template
<
typename
T
>
void
operator
>>
(
T
&
target
)
{
GetOutput
<
0
>
()
>>
target
.
GetInput
<
0
>
();
GetOutput
<
0
>
()
>>
target
.
template
GetInput
<
0
>
();
}
private
:
...
...
dataflow_cpp/include/embb/dataflow/internal/switch.h
View file @
466fcc35
...
...
@@ -98,7 +98,7 @@ class Switch
template
<
typename
T
>
void
operator
>>
(
T
&
target
)
{
GetOutput
<
0
>
()
>>
target
.
GetInput
<
0
>
();
GetOutput
<
0
>
()
>>
target
.
template
GetInput
<
0
>
();
}
virtual
void
OnClock
(
int
clock
)
{
...
...
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