@@ -25,8 +25,8 @@ void binary_xor(const T& x, const U& y, V&& z)
2525 " Template type is not compatible with a span of integers" );
2626 static_assert (detail::is_integral_span_compatible<V>::value,
2727 " Template type is not compatible with a span of integers" );
28- srsgnb_srsvec_assert_size (x, y);
29- srsgnb_srsvec_assert_size (x, z);
28+ srsran_srsvec_assert_size (x, y);
29+ srsran_srsvec_assert_size (x, z);
3030
3131 for (std::size_t i = 0 , len = x.size (); i != len; ++i) {
3232 z[i] = x[i] ^ y[i];
@@ -42,8 +42,8 @@ void binary_and(const T& x, const U& y, V&& z)
4242 " Template type is not compatible with a span of integers" );
4343 static_assert (detail::is_integral_span_compatible<V>::value,
4444 " Template type is not compatible with a span of integers" );
45- srsgnb_srsvec_assert_size (x, y);
46- srsgnb_srsvec_assert_size (x, z);
45+ srsran_srsvec_assert_size (x, y);
46+ srsran_srsvec_assert_size (x, z);
4747
4848 for (std::size_t i = 0 , len = x.size (); i != len; ++i) {
4949 z[i] = x[i] & y[i];
@@ -59,8 +59,8 @@ void binary_or(const T& x, const U& y, V&& z)
5959 " Template type is not compatible with a span of integers" );
6060 static_assert (detail::is_integral_span_compatible<V>::value,
6161 " Template type is not compatible with a span of integers" );
62- srsgnb_srsvec_assert_size (x, y);
63- srsgnb_srsvec_assert_size (x, z);
62+ srsran_srsvec_assert_size (x, y);
63+ srsran_srsvec_assert_size (x, z);
6464
6565 for (std::size_t i = 0 , len = x.size (); i != len; ++i) {
6666 z[i] = x[i] | y[i];
0 commit comments