From 8df4bb864fac0abbbded9b9ad42212f1cbb35069 Mon Sep 17 00:00:00 2001 From: Ian Bell Date: Sun, 18 May 2025 13:53:59 -0400 Subject: [PATCH] Fix array sizes in creation --- include/Helmholtz.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/Helmholtz.h b/include/Helmholtz.h index 942f21ab..bec0a515 100644 --- a/include/Helmholtz.h +++ b/include/Helmholtz.h @@ -741,8 +741,8 @@ class ResidualHelmholtzSAFTAssociating : public BaseHelmholtzTerm class BaseHelmholtzContainer { protected: - std::array cache = create_filled_array(_HUGE); - std::array is_cached = create_filled_array(false); + std::array cache = create_filled_array(_HUGE); + std::array is_cached = create_filled_array(false); constexpr static std::size_t i00 = 0, i01 = 1, i02 = 2, i03 = 3, i04 = 4, i10 = 5, i11 = 6, i12 = 7, i13 = 8, i20 = 9, i21 = 10, i22 = 11,