Fix MSVC warnings.
This commit is contained in:
parent
44e23c39f1
commit
e22d657202
@ -212,10 +212,11 @@ template <typename T>
|
|||||||
class ArgConverter : public fmt::internal::ArgVisitor<ArgConverter<T>, void> {
|
class ArgConverter : public fmt::internal::ArgVisitor<ArgConverter<T>, void> {
|
||||||
private:
|
private:
|
||||||
fmt::internal::Arg &arg_;
|
fmt::internal::Arg &arg_;
|
||||||
char type_;
|
wchar_t type_;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
ArgConverter(fmt::internal::Arg &arg, char type) : arg_(arg), type_(type) {}
|
ArgConverter(fmt::internal::Arg &arg, wchar_t type)
|
||||||
|
: arg_(arg), type_(type) {}
|
||||||
|
|
||||||
template <typename U>
|
template <typename U>
|
||||||
void visit_any_int(U value) {
|
void visit_any_int(U value) {
|
||||||
|
Loading…
Reference in New Issue
Block a user