[clang-tidy] Replace {} with = default

Found with hicpp-use-equals-default

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2019-11-07 12:58:32 -08:00
committed by Victor Zverovich
parent 12f9437e22
commit 87cd545a1e
3 changed files with 6 additions and 6 deletions

View File

@@ -3030,7 +3030,7 @@ template <typename T, typename Char>
struct formatter<T, Char,
enable_if_t<internal::type_constant<T, Char>::value !=
internal::custom_type>> {
FMT_CONSTEXPR formatter() {}
FMT_CONSTEXPR formatter() = default;
// Parses format specifiers stopping either at the end of the range or at the
// terminating '}'.