From 38cc68b3e53d87149d25c5f39c25a59d31622593 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 7 Jun 2020 08:36:33 -0700 Subject: [PATCH] Inline visitor --- include/fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index ff4eaa46..59fcf39f 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -1794,7 +1794,7 @@ class arg_formatter_base { } template ::value)> - iterator operator()(T value) { + FMT_INLINE iterator operator()(T value) { if (specs_) write_int(value, *specs_); else