mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-19 20:18:49 +00:00
spec -> specs
This commit is contained in:
parent
f9e0e90441
commit
d9835737f0
@ -2280,10 +2280,10 @@ class arg_formatter_base {
|
||||
detail::reserve(std::declval<iterator&>(), 0))>;
|
||||
|
||||
template <typename T>
|
||||
FMT_CONSTEXPR void write_int(T value, const format_specs& spec) {
|
||||
FMT_CONSTEXPR void write_int(T value, const format_specs& specs) {
|
||||
using uint_type = uint32_or_64_or_128_t<T>;
|
||||
int_writer<iterator, Char, uint_type> w(out_, locale_, value, spec);
|
||||
handle_int_type_spec(spec.type, w);
|
||||
int_writer<iterator, Char, uint_type> w(out_, locale_, value, specs);
|
||||
handle_int_type_spec(specs.type, w);
|
||||
out_ = w.out;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user