Skip to content

Commit

Permalink
Stream::write now same as Stream::Push
Browse files Browse the repository at this point in the history
  • Loading branch information
derpda committed Apr 25, 2022
1 parent a67e02f commit 23046c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/hlslib/xilinx/Stream.h
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class Stream<T, 0, Storage::Unspecified> {
/// Compatibility with hls::stream interface.
void write(T const &val) {
#pragma HLS INLINE
WriteBlocking(val, std::numeric_limits<int>::max());
WriteBlocking(val);
}

/// Compatibility with hls::stream interface.
Expand Down

0 comments on commit 23046c0

Please sign in to comment.