Tweak the docs

This commit is contained in:
Victor Zverovich
2020-06-25 11:29:49 -07:00
parent cc3a88e6b3
commit 8630a8f5ff
2 changed files with 12 additions and 10 deletions
+7 -5
View File
@@ -427,11 +427,13 @@ The format string syntax is described in the documentation of
Format string compilation
=========================
Format strings can be processed at compile time for built-in and string types
as well as user-defined types with ``constexpr`` ``parse`` functions in their
``formatter`` specializations. Format string compilation can generate more
binary code compared to the normal API and is only recommended in places where
formatting is a performance bottleneck.
``fmt/compile.h`` provides format string compilation support. Format strings
are parsed at compile time and converted into efficient formatting code. This
supports arguments of built-in and string types as well as user-defined types
with ``constexpr`` ``parse`` functions in their ``formatter`` specializations.
Format string compilation can generate more binary code compared to the default
API and is only recommended in places where formatting is a performance
bottleneck.
.. doxygendefine:: FMT_COMPILE