Commit 9ea183aa authored by Victor Zverovich's avatar Victor Zverovich

Fix MSVC build

parent 8f4b918c
...@@ -1569,7 +1569,7 @@ class arg_store { ...@@ -1569,7 +1569,7 @@ class arg_store {
public: public:
static const uint64_t TYPES = static const uint64_t TYPES =
NUM_ARGS <= internal::MAX_PACKED_ARGS ? NUM_ARGS <= internal::MAX_PACKED_ARGS ?
internal::make_type<Args..., void>() : -NUM_ARGS; internal::make_type<Args..., void>() : -static_cast<int64_t>(NUM_ARGS);
arg_store(const Args &... args) arg_store(const Args &... args)
: data_(Array{{internal::make_arg<IS_PACKED, Context>(args)...}}) {} : data_(Array{{internal::make_arg<IS_PACKED, Context>(args)...}}) {}
......
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