From 335bcab76856246cc2daae4e7bcefe24b85e652b Mon Sep 17 00:00:00 2001 From: jtlap Date: Wed, 13 Dec 2023 18:07:55 +0100 Subject: [PATCH] hn typo --- include/kyosu/types/impl/bessel/cb_hn.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/kyosu/types/impl/bessel/cb_hn.hpp b/include/kyosu/types/impl/bessel/cb_hn.hpp index 13e0c136..77bf0209 100644 --- a/include/kyosu/types/impl/bessel/cb_hn.hpp +++ b/include/kyosu/types/impl/bessel/cb_hn.hpp @@ -96,8 +96,8 @@ namespace kyosu::_ auto cb_h12n(N n, Z z, R & h1s, R& h2s) noexcept { auto an = abs(n); - EVE_ASSERT(std::size(cjv) > size_t(an), "not room enough in js"); - EVE_ASSERT(std::size(cyv) > size_t(an), "not room enough in ys"); + EVE_ASSERT(std::size(h1s) > size_t(an), "not room enough in h1s"); + EVE_ASSERT(std::size(h2s) > size_t(an), "not room enough in h2s"); cb_jyn(n, z, h1s, h2s); for(int i=0; i <= an; ++i) {