types: fix indent

f344e130 failed to get the indent right, so fix it.

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#16834
This commit is contained in:
Kefu Chai
2024-01-17 10:31:06 +08:00
committed by Botond Dénes
parent 8087bc72f0
commit f5d1836a45

View File

@@ -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<data_value>::format(const data_value& v,
fmt::format_context& ctx) const -> decltype(ctx.out()) {
auto fmt::formatter<data_value>::format(const data_value& v,
fmt::format_context& ctx) const -> decltype(ctx.out()) {
if (v.is_null()) {
return fmt::format_to(ctx.out(), "null");
}