From 99b1f754752db2092ff596d4bc7e2072b35e86b7 Mon Sep 17 00:00:00 2001 From: Paul Date: Tue, 23 Feb 2016 10:14:27 -0600 Subject: [PATCH] Use a grid table instead --- doc/src/configurations.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/doc/src/configurations.md b/doc/src/configurations.md index f320cdd..f010e62 100644 --- a/doc/src/configurations.md +++ b/doc/src/configurations.md @@ -3,21 +3,24 @@ Configurations There are several configuration that control the behaviour in the Fit library. ++-------------------------------+--------------------------------------------------------------------------------+ | Name | Description | -|-------------------------------|--------------------------------------------------------------------------------| ++===============================+================================================================================+ | FIT_CHECK_UNPACK_SEQUENCE | Unpack has extra checks to ensure that the function will be invoked with the | | | sequence. This extra check can help improve error reporting but it can slow | | | down compilation. This is enabled by default. | -| | | ++-------------------------------+--------------------------------------------------------------------------------+ | FIT_NO_EXPRESSION_SFINAE | This controls whether the Fit library will use expression SFINAE to detect the | | | callability of functions. On MSVC, this is enabled by default, since it does | | | not have full support for expression SFINAE. | ++-------------------------------+--------------------------------------------------------------------------------+ | | | | FIT_RECURSIVE_CONSTEXPR_DEPTH | Because C++ instantiates `constexpr` functions eagerly, recursion with | | | `constexpr` functions can cause the compiler to reach its internal limits. The | | | setting is used by Fit to set a limit on recursion depth when using | | | `constexpr`. The default is 16, but increasing the limit can increase compile | | | times. | -| | | ++-------------------------------+--------------------------------------------------------------------------------+ +