summaryrefslogtreecommitdiff
path: root/test/io_test_helper.cc
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2025-09-15 21:15:53 +0200
committerJoel Klinghed <the_jk@spawned.biz>2025-09-15 21:15:53 +0200
commitaa49abdf239bae6065fddd0839ec67a404c9748c (patch)
tree631fbb2df58aa35df3d60c65c037ef74b1807114 /test/io_test_helper.cc
parentbf41a601fd0447bcf3a2937a595a1cd8ca5c1633 (diff)
Add .clang-format
Make it easier to keep a consistent style
Diffstat (limited to 'test/io_test_helper.cc')
-rw-r--r--test/io_test_helper.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/io_test_helper.cc b/test/io_test_helper.cc
index 514e888..9ac663a 100644
--- a/test/io_test_helper.cc
+++ b/test/io_test_helper.cc
@@ -70,9 +70,9 @@ class MaxBlockReader : public io::Reader {
} // namespace
-std::unique_ptr<io::Reader> io_make_breaking(
- std::unique_ptr<io::Reader> reader, size_t offset,
- io::ReadError error) {
+std::unique_ptr<io::Reader> io_make_breaking(std::unique_ptr<io::Reader> reader,
+ size_t offset,
+ io::ReadError error) {
return std::make_unique<BreakingReader>(std::move(reader), offset, error);
}