Skip to content

Commit f20b166

Browse files
committed
Fix formatting
1 parent 1445170 commit f20b166

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/fmt/format.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,8 +493,8 @@ template <typename OutputIt,
493493
#if FMT_CLANG_VERSION >= 307 && !FMT_ICC_VERSION
494494
__attribute__((no_sanitize("undefined")))
495495
#endif
496-
FMT_CONSTEXPR20 inline auto reserve(OutputIt it, size_t n) ->
497-
typename OutputIt::value_type* {
496+
FMT_CONSTEXPR20 inline auto
497+
reserve(OutputIt it, size_t n) -> typename OutputIt::value_type* {
498498
auto& c = get_container(it);
499499
size_t size = c.size();
500500
c.resize(size + n);

0 commit comments

Comments
 (0)