Skip to content

Commit

Permalink
Lab 0 fix (missing class name in dummy function definition)
Browse files Browse the repository at this point in the history
  • Loading branch information
keithw committed Sep 16, 2020
1 parent 05b462c commit 31d95c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsponge/byte_stream.cc
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void ByteStream::pop_output(const size_t len) { DUMMY_CODE(len); }
//! Read (i.e., copy and then pop) the next "len" bytes of the stream
//! \param[in] len bytes will be popped and returned
//! \returns a string
std::string read(const size_t len) {
std::string ByteStream::read(const size_t len) {
DUMMY_CODE(len);
return {};
}
Expand Down

0 comments on commit 31d95c3

Please sign in to comment.