mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-25 06:21:00 +00:00
Fix pedantic conversion warning
This commit is contained in:
parent
f0110e8125
commit
e6362642cf
@ -1112,7 +1112,7 @@ class basic_format_args {
|
||||
*/
|
||||
template <typename... Args>
|
||||
basic_format_args(const format_arg_store<Context, Args...> &store)
|
||||
: types_(store.TYPES) {
|
||||
: types_(static_cast<unsigned long long>(store.TYPES)) {
|
||||
set_data(store.data_);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user