Skip to content

Commit

Permalink
Apply clang-format suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
RAVER0306 committed Oct 10, 2024
1 parent a705c18 commit 01ddc95
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions include/ylt/reflection/member_value.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,9 @@ inline constexpr void for_each(T&& t, Visit&& func) {
}
(std::make_index_sequence<sizeof...(args)>{});
#else
visit_members_impl0<T>(std::forward<Visit>(func),
std::make_index_sequence<sizeof...(args)>{},
args...);

visit_members_impl0<T>(std::forward<Visit>(func),
std::make_index_sequence<sizeof...(args)>{},
args...);
#endif
});
}
Expand All @@ -239,9 +238,9 @@ inline constexpr void for_each(T&& t, Visit&& func) {
}
(std::make_index_sequence<sizeof...(args)>{});
#else
visit_members_impl<T>(std::forward<Visit>(func),
std::make_index_sequence<sizeof...(args)>{},
args...);
visit_members_impl<T>(std::forward<Visit>(func),
std::make_index_sequence<sizeof...(args)>{},
args...);
#endif
});
}
Expand Down

0 comments on commit 01ddc95

Please sign in to comment.