From 6742642dcd8be4f41f122465d6ce68a6debf5de6 Mon Sep 17 00:00:00 2001 From: Alexey Ochapov Date: Wed, 9 Dec 2020 20:54:24 +0300 Subject: [PATCH] quick fix for MSVC 19.0.24241.7 --- include/fmt/core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 839cb2dc..e7204be5 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1666,7 +1666,7 @@ template class basic_format_args { : desc_(desc), args_(args) {} public: - constexpr basic_format_args() : desc_(0) {} + constexpr basic_format_args() : desc_(0), args_(nullptr) {} /** \rst