From f5d1836a4545f760605f783a3cfd60a24304ce60 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 17 Jan 2024 10:31:06 +0800 Subject: [PATCH] types: fix indent f344e130 failed to get the indent right, so fix it. Signed-off-by: Kefu Chai Closes scylladb/scylladb#16834 --- types/types.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/types.cc b/types/types.cc index dad399f904..8d67070feb 100644 --- a/types/types.cc +++ b/types/types.cc @@ -3679,8 +3679,8 @@ make_user_value(data_type type, user_type_impl::native_type value) { return data_value::make_new(std::move(type), std::move(value)); } - auto fmt::formatter::format(const data_value& v, - fmt::format_context& ctx) const -> decltype(ctx.out()) { +auto fmt::formatter::format(const data_value& v, + fmt::format_context& ctx) const -> decltype(ctx.out()) { if (v.is_null()) { return fmt::format_to(ctx.out(), "null"); }