Skip to content

Commit b57abb7

Browse files
authored
[libc++] Fix minor formatting error in test/support/counting_projection.h (#72480)
Causing CI/CD to fail.
1 parent e8dd7ec commit b57abb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/test/support/counting_projection.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class counting_projection {
2626
constexpr counting_projection(Proj proj, int& count) : proj_(std::move(proj)), count_(&count) {}
2727

2828
template <class T>
29-
constexpr decltype(auto) operator()(T && value) const {
29+
constexpr decltype(auto) operator()(T&& value) const {
3030
++(*count_);
3131
return std::invoke(proj_, std::forward<T>(value));
3232
}

0 commit comments

Comments
 (0)