Commit e22d6572 authored by Victor Zverovich's avatar Victor Zverovich

Fix MSVC warnings.

parent 44e23c39
...@@ -212,10 +212,11 @@ template <typename T> ...@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment