[libcxx-commits] [libcxx] [libc++] Clean up includes of <__assert> (PR #80091)
Konstantin Varlamov via libcxx-commits
libcxx-commits at lists.llvm.org
Tue Feb 6 17:03:34 PST 2024
================
@@ -2435,7 +2434,7 @@ template <class _Expr, __enable_if_t<__is_val_expr<_Expr>::value, int> >
inline valarray<_Tp>& valarray<_Tp>::operator*=(const _Expr& __v) {
size_t __i = 0;
for (value_type* __t = __begin_; __t != __end_; ++__t, ++__i)
- *__t *= std::__get(__v,__i);
+ *__t *= std::__get(__v, __i);
----------------
var-const wrote:
Nit: this reformatting seems unrelated.
https://github.com/llvm/llvm-project/pull/80091
More information about the libcxx-commits
mailing list