From e6362642cf3338895b6b2d92fed7bcb2d0d38246 Mon Sep 17 00:00:00 2001 From: Florin Iucha Date: Wed, 4 Jul 2018 17:47:20 -0400 Subject: [PATCH] Fix pedantic conversion warning --- 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 721216ad..1303f559 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1112,7 +1112,7 @@ class basic_format_args { */ template basic_format_args(const format_arg_store &store) - : types_(store.TYPES) { + : types_(static_cast(store.TYPES)) { set_data(store.data_); }