Skip to content

Commit

Permalink
fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
serges147 committed Aug 5, 2024
1 parent f9fac5c commit 94e57e2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion c++/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ template <typename T>
void checkPostOrdering(const N<T>* const root, const std::vector<std::uint16_t>& expected, const bool reverse = false)
{
std::vector<std::uint16_t> order;
T::traversePostOrder(root, [&](const N<T>& nd) { order.push_back(nd.getValue()); }, reverse);
T::traversePostOrder(
root, [&](const N<T>& nd) { order.push_back(nd.getValue()); }, reverse);
TEST_ASSERT_EQUAL(expected.size(), order.size());
if (!order.empty())
{
Expand Down

0 comments on commit 94e57e2

Please sign in to comment.