From e422dada0aa2579000dd3c0fc3877c977273679e Mon Sep 17 00:00:00 2001 From: denchat <19730041+denchat@users.noreply.github.com> Date: Sun, 12 May 2019 00:16:02 +0700 Subject: [PATCH] Remove FMT_FUNC, mark FMT_API to export --- include/fmt/format-inl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format-inl.h b/include/fmt/format-inl.h index d8956822..9e77b4e0 100644 --- a/include/fmt/format-inl.h +++ b/include/fmt/format-inl.h @@ -683,7 +683,7 @@ template struct grisu_shortest_handler { }; template -FMT_FUNC bool grisu_format(Double value, buffer& buf, int precision, +FMT_API bool grisu_format(Double value, buffer& buf, int precision, unsigned options, int& exp) { FMT_ASSERT(value >= 0, "value is negative"); bool fixed = (options & grisu_options::fixed) != 0;