mirror of
https://github.com/fmtlib/fmt.git
synced 2025-11-28 13:19:48 +01:00
[clang-tidy] Replace {} with = default
Found with hicpp-use-equals-default Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
committed by
Victor Zverovich
parent
12f9437e22
commit
87cd545a1e
@@ -232,8 +232,8 @@ FMT_FUNC Char internal::decimal_point_impl(locale_ref) {
|
||||
}
|
||||
#endif
|
||||
|
||||
FMT_API FMT_FUNC format_error::~format_error() FMT_NOEXCEPT {}
|
||||
FMT_API FMT_FUNC system_error::~system_error() FMT_NOEXCEPT {}
|
||||
FMT_API FMT_FUNC format_error::~format_error() FMT_NOEXCEPT = default;
|
||||
FMT_API FMT_FUNC system_error::~system_error() FMT_NOEXCEPT = default;
|
||||
|
||||
FMT_FUNC void system_error::init(int err_code, string_view format_str,
|
||||
format_args args) {
|
||||
|
||||
Reference in New Issue
Block a user