mirror of
https://github.com/fmtlib/fmt.git
synced 2025-01-26 12:35:32 +00:00
Get rid of FMT_NORETURN because it breaks when FMT_EXCEPTIONS=0
This commit is contained in:
parent
3c3ae4e319
commit
66915785dd
26
format.cc
26
format.cc
@ -66,26 +66,10 @@ using fmt::internal::Arg;
|
|||||||
#ifndef FMT_THROW
|
#ifndef FMT_THROW
|
||||||
# if FMT_EXCEPTIONS
|
# if FMT_EXCEPTIONS
|
||||||
# define FMT_THROW(x) throw x
|
# define FMT_THROW(x) throw x
|
||||||
|
# define FMT_RETURN_AFTER_THROW(x)
|
||||||
# else
|
# else
|
||||||
# ifndef NDEBUG
|
# define FMT_THROW(x) assert(false)
|
||||||
# define FMT_THROW(x) assert(false && #x)
|
# define FMT_RETURN_AFTER_THROW(x) return x
|
||||||
# elif defined _MSC_VER
|
|
||||||
# define FMT_THROW(x) __assume(0)
|
|
||||||
# elif defined __clang__ || FMT_GCC_VERSION >= 405
|
|
||||||
# define FMT_THROW(x) __builtin_unreachable()
|
|
||||||
# else
|
|
||||||
# define FMT_THROW(x) std::abort()
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef FMT_NORETURN
|
|
||||||
# if defined __GNUC__ || defined __clang__
|
|
||||||
# define FMT_NORETURN __attribute__((__noreturn__))
|
|
||||||
# elif defined _MSC_VER
|
|
||||||
# define FMT_NORETURN __declspec(noreturn)
|
|
||||||
# else
|
|
||||||
# define FMT_NORETURN
|
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -307,9 +291,9 @@ class WidthHandler : public fmt::internal::ArgVisitor<WidthHandler, unsigned> {
|
|||||||
public:
|
public:
|
||||||
explicit WidthHandler(fmt::FormatSpec &spec) : spec_(spec) {}
|
explicit WidthHandler(fmt::FormatSpec &spec) : spec_(spec) {}
|
||||||
|
|
||||||
FMT_NORETURN
|
|
||||||
unsigned visit_unhandled_arg() {
|
unsigned visit_unhandled_arg() {
|
||||||
FMT_THROW(fmt::FormatError("width is not integer"));
|
FMT_THROW(fmt::FormatError("width is not integer"));
|
||||||
|
FMT_RETURN_AFTER_THROW(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
@ -329,9 +313,9 @@ class WidthHandler : public fmt::internal::ArgVisitor<WidthHandler, unsigned> {
|
|||||||
class PrecisionHandler :
|
class PrecisionHandler :
|
||||||
public fmt::internal::ArgVisitor<PrecisionHandler, int> {
|
public fmt::internal::ArgVisitor<PrecisionHandler, int> {
|
||||||
public:
|
public:
|
||||||
FMT_NORETURN
|
|
||||||
unsigned visit_unhandled_arg() {
|
unsigned visit_unhandled_arg() {
|
||||||
FMT_THROW(fmt::FormatError("precision is not integer"));
|
FMT_THROW(fmt::FormatError("precision is not integer"));
|
||||||
|
FMT_RETURN_AFTER_THROW(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user