Skip to content

Commit

Permalink
🎨 Manual formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
yosh-matsuda committed Mar 26, 2023
1 parent 33df68b commit 64bd2ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/cpp_yyjson.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -445,13 +445,13 @@ namespace yyjson
}; // clang-format on
template <typename T>
concept convertible_to_create_array_callable = requires(T&& t) { // clang-format off
{ convert(std::forward<T>(t)) } -> create_array_callable;
{ convert(std::forward<T>(t), copy_string) } -> create_array_callable;
{convert(std::forward<T>(t))} -> create_array_callable;
{convert(std::forward<T>(t), copy_string)} -> create_array_callable;
}; // clang-format on
template <typename T>
concept convertible_to_create_object_callable = requires(T&& t) { // clang-format off
{ convert(std::forward<T>(t)) } -> create_object_callable;
{ convert(std::forward<T>(t), copy_string) } -> create_object_callable;
{convert(std::forward<T>(t))} -> create_object_callable;
{convert(std::forward<T>(t), copy_string)} -> create_object_callable;
}; // clang-format on

template <typename Pair>
Expand Down

0 comments on commit 64bd2ad

Please sign in to comment.