stardis-solver

Solve coupled heat transfers
git clone git://git.meso-star.fr/stardis-solver.git
Log | Files | Refs | README | LICENSE

commit d72465776a2c58ee29377cf82a28077060d678c8
parent 680f6d7b878876c21a2e178b24be22993f3ab05b
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Tue, 12 Sep 2023 10:43:03 +0200

Fix a warning on forward enum declaration

Diffstat:
Msrc/sdis_estimator_c.h | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/sdis_estimator_c.h b/src/sdis_estimator_c.h @@ -26,7 +26,6 @@ struct ssp_rng; struct sdis_device; struct sdis_estimator; -enum sdis_estimator_type; enum flux_name { FLUX_CONVECTIVE, @@ -39,7 +38,7 @@ enum flux_name { struct sdis_estimator { struct accum temperature; struct accum realisation_time; - struct accum fluxes[FLUX_NAMES_COUNT__]; + struct accum fluxes[FLUX_NAMES_COUNT__]; struct { struct accum power;