mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-04-23 03:00:17 -04:00
Fix Coverity CID 38590
use_guesses seems to be unused
This commit is contained in:
@@ -14,9 +14,8 @@ namespace SaturationSolvers
|
||||
saturation_T_pure_Akasaka_options(bool use_guesses=false):use_guesses(use_guesses),omega(_HUGE),rhoV(_HUGE),rhoL(_HUGE),pV(_HUGE),pL(_HUGE){}
|
||||
};
|
||||
struct saturation_T_pure_options{
|
||||
bool use_guesses; ///< true to start off at the values specified by rhoL, rhoV
|
||||
CoolPropDbl omega, rhoL, rhoV, pL, pV, p, T;
|
||||
saturation_T_pure_options(){omega = _HUGE; rhoV = _HUGE; rhoL = _HUGE; rhoL = _HUGE; pV = _HUGE, pL = _HUGE; T = _HUGE;}
|
||||
saturation_T_pure_options():omega(_HUGE),rhoV(_HUGE),rhoL(_HUGE),pV(_HUGE),pL(_HUGE),p(_HUGE),T(_HUGE){}
|
||||
};
|
||||
|
||||
struct saturation_D_pure_options{
|
||||
|
||||
Reference in New Issue
Block a user