Skip to content

Commit

Permalink
fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
daizhirui committed Sep 15, 2024
1 parent 3773d81 commit 8f8a411
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cpp/open3d/utility/IJsonConvertible.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ namespace fmt {
template <>
struct formatter<Json::Value> {
template <typename FormatContext>
auto format(const Json::Value &value, FormatContext &ctx) const -> decltype(ctx.out()) {
auto format(const Json::Value &value, FormatContext &ctx) const
-> decltype(ctx.out()) {
return format_to(ctx.out(), "{}", open3d::utility::JsonToString(value));
}

Expand Down

0 comments on commit 8f8a411

Please sign in to comment.