Skip to content

Commit 906eaf2

Browse files
committed
Make specifier order consistent
1 parent 9f6c12c commit 906eaf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/fmt/format.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1613,7 +1613,7 @@ constexpr auto convert_float(T value) -> convert_float_result<T> {
16131613
}
16141614

16151615
template <typename Char, typename OutputIt>
1616-
FMT_NOINLINE FMT_CONSTEXPR auto fill(OutputIt it, size_t n,
1616+
FMT_CONSTEXPR FMT_NOINLINE auto fill(OutputIt it, size_t n,
16171617
const basic_specs& specs) -> OutputIt {
16181618
auto fill_size = specs.fill_size();
16191619
if (fill_size == 1) return detail::fill_n(it, n, specs.fill_unit<Char>());

0 commit comments

Comments
 (0)