From a7f53c550f4a6162503b5422a9c7343759f6e54e Mon Sep 17 00:00:00 2001 From: Chris White Date: Fri, 26 Mar 2021 15:24:47 -0700 Subject: [PATCH] Work around xl compiler bug when nvcc preprocesses this file --- include/fmt/core.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 184d039f..5824dee8 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1695,7 +1695,8 @@ template class basic_format_args { template constexpr FMT_INLINE basic_format_args( const format_arg_store& store) - : basic_format_args(store.desc, store.data_.args()) {} + : basic_format_args(format_arg_store::desc, + store.data_.args()) {} /** \rst