mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 11:28:20 +00:00
Fix msvc warnings
This commit is contained in:
parent
9d4efd7aa2
commit
1e747f603f
@ -1532,14 +1532,14 @@ struct test_arg_id_handler {
|
|||||||
|
|
||||||
FMT_CONSTEXPR void operator()() { res = EMPTY; }
|
FMT_CONSTEXPR void operator()() { res = EMPTY; }
|
||||||
|
|
||||||
FMT_CONSTEXPR void operator()(unsigned index) {
|
FMT_CONSTEXPR void operator()(unsigned i) {
|
||||||
res = INDEX;
|
res = INDEX;
|
||||||
this->index = index;
|
index = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
FMT_CONSTEXPR void operator()(string_view name) {
|
FMT_CONSTEXPR void operator()(string_view n) {
|
||||||
res = NAME;
|
res = NAME;
|
||||||
this->name = name;
|
name = n;
|
||||||
}
|
}
|
||||||
|
|
||||||
FMT_CONSTEXPR void on_error(const char *) { res = ERROR; }
|
FMT_CONSTEXPR void on_error(const char *) { res = ERROR; }
|
||||||
@ -1582,22 +1582,20 @@ struct test_format_specs_handler {
|
|||||||
precision(other.precision), precision_ref(other.precision_ref),
|
precision(other.precision), precision_ref(other.precision_ref),
|
||||||
type(other.type) {}
|
type(other.type) {}
|
||||||
|
|
||||||
FMT_CONSTEXPR void on_align(fmt::alignment align) { this->align = align; }
|
FMT_CONSTEXPR void on_align(fmt::alignment a) { align = a; }
|
||||||
FMT_CONSTEXPR void on_fill(char fill) { this->fill = fill; }
|
FMT_CONSTEXPR void on_fill(char f) { fill = f; }
|
||||||
FMT_CONSTEXPR void on_plus() { res = PLUS; }
|
FMT_CONSTEXPR void on_plus() { res = PLUS; }
|
||||||
FMT_CONSTEXPR void on_minus() { res = MINUS; }
|
FMT_CONSTEXPR void on_minus() { res = MINUS; }
|
||||||
FMT_CONSTEXPR void on_space() { res = SPACE; }
|
FMT_CONSTEXPR void on_space() { res = SPACE; }
|
||||||
FMT_CONSTEXPR void on_hash() { res = HASH; }
|
FMT_CONSTEXPR void on_hash() { res = HASH; }
|
||||||
FMT_CONSTEXPR void on_zero() { res = ZERO; }
|
FMT_CONSTEXPR void on_zero() { res = ZERO; }
|
||||||
|
|
||||||
FMT_CONSTEXPR void on_width(unsigned width) { this->width = width; }
|
FMT_CONSTEXPR void on_width(unsigned w) { width = w; }
|
||||||
FMT_CONSTEXPR void on_dynamic_width(fmt::internal::auto_id) {}
|
FMT_CONSTEXPR void on_dynamic_width(fmt::internal::auto_id) {}
|
||||||
FMT_CONSTEXPR void on_dynamic_width(unsigned index) { width_ref = index; }
|
FMT_CONSTEXPR void on_dynamic_width(unsigned index) { width_ref = index; }
|
||||||
FMT_CONSTEXPR void on_dynamic_width(string_view) {}
|
FMT_CONSTEXPR void on_dynamic_width(string_view) {}
|
||||||
|
|
||||||
FMT_CONSTEXPR void on_precision(unsigned precision) {
|
FMT_CONSTEXPR void on_precision(unsigned p) { precision = p; }
|
||||||
this->precision = precision;
|
|
||||||
}
|
|
||||||
FMT_CONSTEXPR void on_dynamic_precision(fmt::internal::auto_id) {}
|
FMT_CONSTEXPR void on_dynamic_precision(fmt::internal::auto_id) {}
|
||||||
FMT_CONSTEXPR void on_dynamic_precision(unsigned index) { precision_ref = index; }
|
FMT_CONSTEXPR void on_dynamic_precision(unsigned index) { precision_ref = index; }
|
||||||
FMT_CONSTEXPR void on_dynamic_precision(string_view) {}
|
FMT_CONSTEXPR void on_dynamic_precision(string_view) {}
|
||||||
|
Loading…
Reference in New Issue
Block a user