Skip to content

Commit

Permalink
Revert VS format disagreement
Browse files Browse the repository at this point in the history
  • Loading branch information
mjwitte committed Nov 16, 2023
1 parent 3c0f0ed commit 0819dec
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tst/EnergyPlus/unit/OutputReportTabular.unit.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7208,7 +7208,10 @@ TEST_F(SQLiteFixture, OutputReportTabular_WriteLoadComponentSummaryTables_AirLoo
state->dataSize->SysSizInput.allocate(state->dataSize->NumSysSizInput);
state->dataSize->SysSizInput(1).AirLoopNum = 1;
state->dataSize->SysSizInput(1).SizingOption = DataSizing::NonCoincident;
auto degC_to_F = [](Real64 celsius) constexpr { return celsius * (9.0 / 5.0) + 32.0; };
auto degC_to_F = [](Real64 celsius) constexpr
{
return celsius * (9.0 / 5.0) + 32.0;
};
constexpr Real64 coolMixTempSys = 26.2;
constexpr Real64 coolMixTempSysIP = degC_to_F(coolMixTempSys);
constexpr Real64 heatMixTempSys = -1.7;
Expand Down

5 comments on commit 0819dec

@nrel-bot
Copy link

Choose a reason for hiding this comment

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

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

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.

HeatEmissionsDiffs10300 (mjwitte) - x86_64-MacOS-10.17-clang-14.0.0: OK (3540 of 3540 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot-2b
Copy link

Choose a reason for hiding this comment

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

HeatEmissionsDiffs10300 (mjwitte) - x86_64-Linux-Ubuntu-22.04-gcc-11.4: OK (3581 of 3581 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.

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

Build Badge Test Badge Coverage Badge

@nrel-bot-2b
Copy link

Choose a reason for hiding this comment

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

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

Build Badge Test Badge Coverage Badge

Please sign in to comment.