mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-02 02:29:08 +00:00
Remove the fallthrough attribute detection
This commit is contained in:
parent
a92c179a6d
commit
618dd9d6af
8
format.h
8
format.h
@ -61,7 +61,6 @@
|
||||
#endif
|
||||
|
||||
#ifdef __clang__
|
||||
# define FMT_CLANG_VERSION (__clang_major__ * 100 + __clang_minor__)
|
||||
# pragma clang diagnostic ignored "-Wdocumentation-unknown-command"
|
||||
#endif
|
||||
|
||||
@ -120,13 +119,6 @@
|
||||
# define FMT_NOEXCEPT(expr)
|
||||
#endif
|
||||
|
||||
#if FMT_HAS_CPP_ATTRIBUTE(clang::fallthrough) || \
|
||||
(FMT_CLANG_VERSION >= 600 && __cplusplus >= 201103)
|
||||
# define FMT_FALLTHROUGH [[clang::fallthrough]]
|
||||
#else
|
||||
# define FMT_FALLTHROUGH
|
||||
#endif
|
||||
|
||||
// A macro to disallow the copy constructor and operator= functions
|
||||
// This should be used in the private: declarations for a class
|
||||
#define FMT_DISALLOW_COPY_AND_ASSIGN(TypeName) \
|
||||
|
Loading…
Reference in New Issue
Block a user