Use newer versions of Sphinx and Breathe

This commit is contained in:
Victor Zverovich
2020-11-08 09:46:27 -08:00
parent 038057eb3e
commit ffa0a0834a
3 changed files with 43 additions and 66 deletions

View File

@@ -274,7 +274,11 @@ struct monostate {};
// An enable_if helper to be used in template parameters which results in much
// shorter symbols: https://godbolt.org/z/sWw4vP. Extra parentheses are needed
// to workaround a bug in MSVC 2019 (see #1140 and #1186).
#define FMT_ENABLE_IF(...) enable_if_t<(__VA_ARGS__), int> = 0
#ifdef FMT_DOC
# define FMT_ENABLE_IF(...)
#else
# define FMT_ENABLE_IF(...) enable_if_t<(__VA_ARGS__), int> = 0
#endif
namespace detail {