Skip to content

Commit

Permalink
Merge pull request #63 from derpda/master
Browse files Browse the repository at this point in the history
Stream::write now same as Stream::Push
  • Loading branch information
definelicht authored Apr 27, 2022
2 parents a67e02f + 23046c0 commit 45578d4
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 45578d4

Please sign in to comment.