From ec3b097cb98f1f50c6e9f7fd2ddfae885522de74 Mon Sep 17 00:00:00 2001 From: Lounarok Date: Sun, 28 Nov 2021 23:02:15 +0800 Subject: [PATCH] [doc] FMT_STRING supports C++14 and no-op in C++11 (#2620) * FMT_STRING supports C++14 and no-op in C++11 * Move requirement to the end. Modify description. --- doc/api.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/api.rst b/doc/api.rst index d7bdd349..93fb3faf 100644 --- a/doc/api.rst +++ b/doc/api.rst @@ -72,6 +72,7 @@ Compile-time Format String Checks Compile-time checks are enabled when using ``FMT_STRING``. They support built-in and string types as well as user-defined types with ``constexpr`` ``parse`` functions in their ``formatter`` specializations. +Requires C++14 and is a no-op in C++11. .. doxygendefine:: FMT_STRING