mirror of
https://github.com/fmtlib/fmt.git
synced 2024-12-11 09:50:06 +00:00
Fix a typo.
This commit is contained in:
parent
2883163787
commit
21f3a700c5
8
format.h
8
format.h
@ -43,7 +43,7 @@
|
|||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
# define FMG_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
|
# define FMT_GCC_VERSION (__GNUC__ * 100 + __GNUC_MINOR__)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Compatibility with compilers other than clang.
|
// Compatibility with compilers other than clang.
|
||||||
@ -54,7 +54,7 @@
|
|||||||
#ifndef FMT_USE_INITIALIZER_LIST
|
#ifndef FMT_USE_INITIALIZER_LIST
|
||||||
# define FMT_USE_INITIALIZER_LIST \
|
# define FMT_USE_INITIALIZER_LIST \
|
||||||
(__has_feature(cxx_generalized_initializers) || \
|
(__has_feature(cxx_generalized_initializers) || \
|
||||||
(FMG_GCC_VERSION >= 404 && __cplusplus >= 201103) || _MSC_VER >= 1700)
|
(FMT_GCC_VERSION >= 404 && __cplusplus >= 201103) || _MSC_VER >= 1700)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if FMT_USE_INITIALIZER_LIST
|
#if FMT_USE_INITIALIZER_LIST
|
||||||
@ -63,13 +63,13 @@
|
|||||||
|
|
||||||
// Define FMT_USE_NOEXCEPT to make format use noexcept (C++11 feature).
|
// Define FMT_USE_NOEXCEPT to make format use noexcept (C++11 feature).
|
||||||
#if FMT_USE_NOEXCEPT || __has_feature(cxx_noexcept) || \
|
#if FMT_USE_NOEXCEPT || __has_feature(cxx_noexcept) || \
|
||||||
(FMG_GCC_VERSION >= 408 && __cplusplus >= 201103)
|
(FMT_GCC_VERSION >= 408 && __cplusplus >= 201103)
|
||||||
# define FMT_NOEXCEPT(expr) noexcept(expr)
|
# define FMT_NOEXCEPT(expr) noexcept(expr)
|
||||||
#else
|
#else
|
||||||
# define FMT_NOEXCEPT(expr)
|
# define FMT_NOEXCEPT(expr)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if FMG_GCC_VERSION >= 406
|
#if FMT_GCC_VERSION >= 406
|
||||||
# define FMT_GCC_DIAGNOSTIC
|
# define FMT_GCC_DIAGNOSTIC
|
||||||
# pragma GCC diagnostic push
|
# pragma GCC diagnostic push
|
||||||
# pragma GCC diagnostic ignored "-Wlong-long"
|
# pragma GCC diagnostic ignored "-Wlong-long"
|
||||||
|
Loading…
Reference in New Issue
Block a user