From f5dc0ed342578f14d6e0756fc6c8cb24856feed4 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sat, 24 Feb 2018 08:39:17 +0000 Subject: [PATCH] Break long lines --- include/fmt/format.h | 3 ++- include/fmt/posix.cc | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 2e725364..4d40598c 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -3199,7 +3199,8 @@ template struct formatter, Char>: formatter::value_type, Char> { template - auto format(const arg_join &value, FormatContext &ctx) -> decltype(ctx.begin()) { + auto format(const arg_join &value, FormatContext &ctx) + -> decltype(ctx.begin()) { typedef formatter::value_type, Char> base; auto it = value.begin; auto out = ctx.begin(); diff --git a/include/fmt/posix.cc b/include/fmt/posix.cc index 76414842..463f22d0 100644 --- a/include/fmt/posix.cc +++ b/include/fmt/posix.cc @@ -71,7 +71,8 @@ fmt::BufferedFile::~BufferedFile() FMT_NOEXCEPT { fmt::BufferedFile::BufferedFile( fmt::cstring_view filename, fmt::cstring_view mode) { - FMT_RETRY_VAL(file_, FMT_SYSTEM(fopen(filename.c_str(), mode.c_str())), FMT_NULL); + FMT_RETRY_VAL(file_, + FMT_SYSTEM(fopen(filename.c_str(), mode.c_str())), FMT_NULL); if (!file_) FMT_THROW(system_error(errno, "cannot open file {}", filename.c_str())); }