summaryrefslogtreecommitdiff
path: root/source/book.cc
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-05-31 00:00:12 -0700
committerFuwn <[email protected]>2024-05-31 00:20:41 -0700
commit968e1c4af014b7f40bfaa4f57fcc0f38e5e0d847 (patch)
treedf80525ad0cc9e4b561bfb0772c30ccc5b64b4a2 /source/book.cc
parentfeat: initial commit (diff)
downloadcst_136_assignment_eight-main.tar.xz
cst_136_assignment_eight-main.zip
feat: final releaseHEADmain
Diffstat (limited to 'source/book.cc')
-rw-r--r--source/book.cc4
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: ";