diff options
| author | Fuwn <[email protected]> | 2024-05-31 00:00:12 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-05-31 00:20:41 -0700 |
| commit | 968e1c4af014b7f40bfaa4f57fcc0f38e5e0d847 (patch) | |
| tree | df80525ad0cc9e4b561bfb0772c30ccc5b64b4a2 /source/book.cc | |
| parent | feat: initial commit (diff) | |
| download | cst_136_assignment_eight-main.tar.xz cst_136_assignment_eight-main.zip | |
Diffstat (limited to 'source/book.cc')
| -rw-r--r-- | source/book.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/book.cc b/source/book.cc index 6b0bd6a..a2c0a13 100644 --- a/source/book.cc +++ b/source/book.cc @@ -81,8 +81,8 @@ auto book::copies(book::size_type copies) noexcept -> book & { return *this; } -auto operator<<(std::ostream &output_stream, const book &book) - -> std::ostream & { +auto operator<<(std::ostream &output_stream, + const book &book) -> std::ostream & { output_stream << "Title: " << book._title << '\n'; output_stream << "Authors: "; |