Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Bronek committed Oct 25, 2023
1 parent 65346dc commit ee53c5d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/test/jtx/TestHelpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ namespace jtx {

// Helper to make vector from iterable
template <typename T>
concept iterable = requires(T& v) {
std::begin(v);
std::end(v);
};
concept iterable = requires(T& v)
{
std::begin(v);
std::end(v);
};

template <typename Input>
auto
make_vector(Input const& input)
requires iterable<Input>
make_vector(Input const& input) requires iterable<Input>
{
return std::vector(std::begin(input), std::end(input));
}
Expand Down

0 comments on commit ee53c5d

Please sign in to comment.