Work around xl compiler bug when nvcc preprocesses this file (#2190)

This commit is contained in:
Chris White 2021-03-27 06:05:49 -07:00 committed by GitHub
parent 4dc7170d21
commit 9b34681d97
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1695,7 +1695,8 @@ template <typename Context> class basic_format_args {
template <typename... Args>
constexpr FMT_INLINE basic_format_args(
const format_arg_store<Context, Args...>& store)
: basic_format_args(store.desc, store.data_.args()) {}
: basic_format_args(format_arg_store<Context, Args...>::desc,
store.data_.args()) {}
/**
\rst