From 9b34681d978044d3b5a40a6aa12f3e6cd5fc5a8b Mon Sep 17 00:00:00 2001 From: Chris White Date: Sat, 27 Mar 2021 06:05:49 -0700 Subject: [PATCH] Work around xl compiler bug when nvcc preprocesses this file (#2190) --- 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