From d1aebdbde0fc59c7aa047af19ac58784f8a99e1d Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Wed, 12 May 2021 17:49:53 -0700 Subject: [PATCH] Inline format_to --- include/fmt/compile.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/compile.h b/include/fmt/compile.h index 9c0ff9bd..e90ff405 100644 --- a/include/fmt/compile.h +++ b/include/fmt/compile.h @@ -564,8 +564,8 @@ FMT_INLINE std::basic_string format(const CompiledFormat& cf, template ::value)> -constexpr OutputIt format_to(OutputIt out, const CompiledFormat& cf, - const Args&... args) { +constexpr FMT_INLINE OutputIt format_to(OutputIt out, const CompiledFormat& cf, + const Args&... args) { return cf.format(out, args...); }