mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-10 06:28:03 -05:00
Fix array sizes in creation
This commit is contained in:
@@ -741,8 +741,8 @@ class ResidualHelmholtzSAFTAssociating : public BaseHelmholtzTerm
|
||||
class BaseHelmholtzContainer
|
||||
{
|
||||
protected:
|
||||
std::array<double, 16> cache = create_filled_array<double, N>(_HUGE);
|
||||
std::array<bool, 16> is_cached = create_filled_array<bool, N>(false);
|
||||
std::array<double, 16> cache = create_filled_array<double, 16>(_HUGE);
|
||||
std::array<bool, 16> is_cached = create_filled_array<bool, 16>(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,
|
||||
|
||||
Reference in New Issue
Block a user