Incorporate PR feedback
This commit is contained in:
parent
2644c2fc01
commit
bb6eccf90a
@ -253,13 +253,10 @@ typedef __int64 intmax_t;
|
|||||||
#ifndef FMT_DEFAULTED_COPY_CTOR
|
#ifndef FMT_DEFAULTED_COPY_CTOR
|
||||||
# if FMT_USE_DEFAULTED_FUNCTIONS || FMT_HAS_FEATURE(cxx_defaulted_functions) || \
|
# if FMT_USE_DEFAULTED_FUNCTIONS || FMT_HAS_FEATURE(cxx_defaulted_functions) || \
|
||||||
(FMT_GCC_VERSION >= 404 && FMT_HAS_GXX_CXX11) || FMT_MSC_VER >= 1800
|
(FMT_GCC_VERSION >= 404 && FMT_HAS_GXX_CXX11) || FMT_MSC_VER >= 1800
|
||||||
# define FMT_DEFAULTED = default
|
|
||||||
# define FMT_DEFAULTED_COPY_CTOR(TypeName) \
|
# define FMT_DEFAULTED_COPY_CTOR(TypeName) \
|
||||||
TypeName(const TypeName&) = default
|
TypeName(const TypeName&) = default;
|
||||||
# else
|
# else
|
||||||
# define FMT_DEFAULTED {}
|
# define FMT_DEFAULTED_COPY_CTOR(TypeName)
|
||||||
# define FMT_DEFAULTED_COPY_CTOR(TypeName) \
|
|
||||||
TypeName(const TypeName&) {}
|
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -2422,7 +2419,7 @@ class SystemError : public internal::RuntimeError {
|
|||||||
SystemError(int error_code, CStringRef message) {
|
SystemError(int error_code, CStringRef message) {
|
||||||
init(error_code, message, ArgList());
|
init(error_code, message, ArgList());
|
||||||
}
|
}
|
||||||
FMT_DEFAULTED_COPY_CTOR(SystemError);
|
FMT_DEFAULTED_COPY_CTOR(SystemError)
|
||||||
FMT_VARIADIC_CTOR(SystemError, init, int, CStringRef)
|
FMT_VARIADIC_CTOR(SystemError, init, int, CStringRef)
|
||||||
|
|
||||||
FMT_API ~SystemError() FMT_DTOR_NOEXCEPT;
|
FMT_API ~SystemError() FMT_DTOR_NOEXCEPT;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user