From f675cb887e008c328ad59b85be1a0f69462f51a1 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 8 Dec 2019 18:01:59 -0800 Subject: [PATCH] Remove redundant cast --- 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 1c6c855d..efe6c8e5 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1285,7 +1285,7 @@ template class basic_format_args { */ template basic_format_args(const format_arg_store& store) - : types_(static_cast(store.types)) { + : types_(store.types) { set_data(store.data_); }