mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Initialising arrays in chemkinLexer to avoid compiler warnings
This commit is contained in:
@ -309,8 +309,8 @@ List<specieElement> currentSpecieComposition(5);
|
||||
scalar currentLowT = 0;
|
||||
scalar currentHighT = 0;
|
||||
scalar currentCommonT = 0;
|
||||
gasThermoPhysics::coeffArray highCpCoeffs;
|
||||
gasThermoPhysics::coeffArray lowCpCoeffs;
|
||||
gasThermoPhysics::coeffArray highCpCoeffs = {0, 0, 0, 0, 0, 0, 0};
|
||||
gasThermoPhysics::coeffArray lowCpCoeffs = {0, 0, 0, 0, 0, 0, 0};
|
||||
|
||||
gasReaction::specieCoeffs currentSpecieCoeff;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user