Skip to content

Commit

Permalink
Update format.h (#1898)
Browse files Browse the repository at this point in the history
  • Loading branch information
moiwi authored Sep 24, 2020
1 parent 0651e45 commit 34179b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/fmt/format.h
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ using uint32_or_64_or_128_t =
conditional_t<num_bits<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
Expand Down Expand Up @@ -863,7 +863,7 @@ struct uint128_wrapper {
};

// Table entry type for divisibility test used internally
template <typename T> struct divtest_table_entry {
template <typename T> struct FMT_EXTERN_TEMPLATE_API divtest_table_entry {
T mod_inv;
T max_quotient;
};
Expand Down

0 comments on commit 34179b3

Please sign in to comment.