Skip to content

Commit

Permalink
Correct array dimensions for EquationProps. (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktbolt authored Nov 7, 2023
1 parent f55cecc commit 98119a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Source/svFSI/read_files.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ namespace read_files_ns {
using EquationNdop = std::array<int, 4>;
using EquationOutputs = std::array<consts::OutputType, maxOutput>;
using EquationPhys = std::vector<consts::EquationType>;
using EquationProps = std::array<std::array<consts::PhysicalProperyType, consts::maxNProp>, 10>;
using EquationProps = std::array<std::array<consts::PhysicalProperyType, 10>, consts::maxNProp>;

void face_match(ComMod& com_mod, faceType& lFa, faceType& gFa, Vector<int>& ptr);

Expand Down

0 comments on commit 98119a4

Please sign in to comment.