From a9d839f5103757c9c63377b95514554ee4eeb700 Mon Sep 17 00:00:00 2001 From: moiwi <71585945+moiwi@users.noreply.github.com> Date: Thu, 24 Sep 2020 15:46:11 +0200 Subject: [PATCH] Update format.h --- include/fmt/format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 1f585ea8796d..90a10b068f32 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -818,7 +818,7 @@ using uint32_or_64_or_128_t = conditional_t() <= 64, uint64_t, uint128_t>>; // 128-bit integer type used internally -struct uint128_wrapper { +struct FMT_EXTERN_TEMPLATE_API uint128_wrapper { uint128_wrapper() = default; #if FMT_USE_INT128 @@ -863,7 +863,7 @@ struct uint128_wrapper { }; // Table entry type for divisibility test used internally -template struct divtest_table_entry { +template struct FMT_EXTERN_TEMPLATE_API divtest_table_entry { T mod_inv; T max_quotient; };