Skip to content

Commit

Permalink
Fix false warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
mjwitte committed Jul 29, 2024
1 parent 18f5c3f commit baa89d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/EnergyPlus/FluidProperties.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2843,13 +2843,13 @@ namespace FluidProperties {
// and linearly interpolates the corresponding saturation temperature values.

// Return value
Real64 ReturnValue;
Real64 ReturnValue = 0.0;

// FUNCTION PARAMETER DEFINITIONS:
static constexpr std::string_view routineName = "RefrigProps::getSatTemperature";

// FUNCTION LOCAL VARIABLE DECLARATIONS:
bool ErrorFlag; // error flag for current call
bool ErrorFlag = false; // error flag for current call

auto &df = state.dataFluidProps;

Expand Down

5 comments on commit baa89d4

@nrel-bot
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

getSatTempError (mjwitte) - Win64-Windows-10-VisualStudio-16: OK (2862 of 2862 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-2c
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

getSatTempError (mjwitte) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (3695 of 3695 tests passed, 24 test warnings)

Messages:\n

  • 24 tests had: ERR diffs.

Build Badge Test Badge

@nrel-bot-3
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

getSatTempError (mjwitte) - x86_64-MacOS-10.18-clang-15.0.0: OK (3654 of 3654 tests passed, 24 test warnings)

Messages:\n

  • 24 tests had: ERR diffs.

Build Badge Test Badge

@nrel-bot-2c
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

getSatTempError (mjwitte) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-UnitTestsCoverage-Debug: OK (2070 of 2070 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

@nrel-bot-2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

getSatTempError (mjwitte) - x86_64-Linux-Ubuntu-22.04-gcc-11.4-IntegrationCoverage-Debug: OK (795 of 795 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.