Skip to content

Commit

Permalink
assert incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
jtlap committed Dec 4, 2023
1 parent f338141 commit 4bc2031
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/kyosu/types/impl/bessel/cb_jyn.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -418,8 +418,8 @@ namespace kyosu::_
auto cb_jyn(N nn, Z z, R1& cjv, R2& cyv) noexcept
requires(concepts::complex<Z> || eve::floating_ordered_value<Z>)
{
EVE_ASSERT(size(js) > n, "not room enough in js");
EVE_ASSERT(size(ys) > n, "not room enough in ys");
EVE_ASSERT(size(cjv) > nn, "not room enough in js");
EVE_ASSERT(size(cyv) > nn, "not room enough in ys");
using u_t = eve::underlying_type_t<Z>;
auto n = eve::abs(nn);
if (n <= 1)
Expand Down

0 comments on commit 4bc2031

Please sign in to comment.