We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1445170 commit f20b166Copy full SHA for f20b166
include/fmt/format.h
@@ -493,8 +493,8 @@ template <typename OutputIt,
493
#if FMT_CLANG_VERSION >= 307 && !FMT_ICC_VERSION
494
__attribute__((no_sanitize("undefined")))
495
#endif
496
-FMT_CONSTEXPR20 inline auto reserve(OutputIt it, size_t n) ->
497
- typename OutputIt::value_type* {
+FMT_CONSTEXPR20 inline auto
+reserve(OutputIt it, size_t n) -> typename OutputIt::value_type* {
498
auto& c = get_container(it);
499
size_t size = c.size();
500
c.resize(size + n);
0 commit comments