Skip to content

Commit

Permalink
Merge pull request #8382 from NREL/remove_ep_unused_use_maybe_unused
Browse files Browse the repository at this point in the history
Remove EP_UNUSED and use C++17's [[maybe_unused]]
  • Loading branch information
Myoldmopar committed Nov 14, 2020
2 parents 12adf59 + 45cd615 commit 4af4ea4
Show file tree
Hide file tree
Showing 171 changed files with 1,572 additions and 1,449 deletions.
500 changes: 250 additions & 250 deletions src/EnergyPlus/AirflowNetwork/include/AirflowNetwork/Elements.hpp

Large diffs are not rendered by default.

483 changes: 242 additions & 241 deletions src/EnergyPlus/AirflowNetwork/src/Elements.cpp

Large diffs are not rendered by default.

11 changes: 6 additions & 5 deletions src/EnergyPlus/BoilerSteam.cc
Original file line number Diff line number Diff line change
Expand Up @@ -111,15 +111,16 @@ namespace BoilerSteam {
}

void BoilerSpecs::simulate(
EnergyPlusData &state, const PlantLocation &EP_UNUSED(calledFromLocation), bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag)
EnergyPlusData &state, [[maybe_unused]] const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag)
{
this->initialize(state);
auto &sim_component(DataPlant::PlantLoop(this->LoopNum).LoopSide(this->LoopSideNum).Branch(this->BranchNum).Comp(this->CompNum));
this->calculate(state, CurLoad, RunFlag, sim_component.FlowCtrl);
this->update(CurLoad, RunFlag, FirstHVACIteration);
}

void BoilerSpecs::getDesignCapacities(EnergyPlusData &EP_UNUSED(state), const PlantLocation &, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad)
void
BoilerSpecs::getDesignCapacities([[maybe_unused]] EnergyPlusData &state, const PlantLocation &, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad)
{
MinLoad = this->NomCap * this->MinPartLoadRat;
MaxLoad = this->NomCap * this->MaxPartLoadRat;
Expand Down Expand Up @@ -786,9 +787,9 @@ namespace BoilerSteam {

// Beginning of Record Keeping subroutines for the BOILER:SIMPLE Module

void BoilerSpecs::update(Real64 const MyLoad, // boiler operating load
bool const RunFlag, // boiler on when TRUE
bool const EP_UNUSED(FirstHVACIteration) // TRUE if First iteration of simulation
void BoilerSpecs::update(Real64 const MyLoad, // boiler operating load
bool const RunFlag, // boiler on when TRUE
[[maybe_unused]] bool const FirstHVACIteration // TRUE if First iteration of simulation
)
{
// SUBROUTINE INFORMATION:
Expand Down
6 changes: 3 additions & 3 deletions src/EnergyPlus/BoilerSteam.hh
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,13 @@ namespace BoilerSteam {
bool FirstHVACIteration // TRUE if First iteration of simulation
);

void simulate(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;
void simulate([[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;

void getDesignCapacities(EnergyPlusData &state, const PlantLocation &EP_UNUSED(calledFromLocation), Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad) override;
void getDesignCapacities(EnergyPlusData &state, [[maybe_unused]] const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad) override;

void getSizingFactor(Real64 &sizFac) override;

void onInitLoopEquip(EnergyPlusData &EP_UNUSED(state), const PlantLocation &EP_UNUSED(calledFromLocation)) override;
void onInitLoopEquip([[maybe_unused]] EnergyPlusData &state, [[maybe_unused]] const PlantLocation &calledFromLocation) override;

static PlantComponent *factory(EnergyPlusData &state, std::string const &objectName);
};
Expand Down
12 changes: 8 additions & 4 deletions src/EnergyPlus/Boilers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ namespace Boilers {
}

void BoilerSpecs::simulate(EnergyPlusData &state,
const PlantLocation &EP_UNUSED(calledFromLocation),
bool const EP_UNUSED(FirstHVACIteration),
[[maybe_unused]] const PlantLocation &calledFromLocation,
[[maybe_unused]] bool const FirstHVACIteration,
Real64 &CurLoad,
bool const RunFlag)
{
Expand All @@ -127,7 +127,11 @@ namespace Boilers {
this->UpdateBoilerRecords(CurLoad, RunFlag);
}

void BoilerSpecs::getDesignCapacities(EnergyPlusData &EP_UNUSED(state), const PlantLocation &EP_UNUSED(calledFromLocation), Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad)
void BoilerSpecs::getDesignCapacities([[maybe_unused]] EnergyPlusData &state,
[[maybe_unused]] const PlantLocation &calledFromLocation,
Real64 &MaxLoad,
Real64 &MinLoad,
Real64 &OptLoad)
{
MinLoad = this->NomCap * this->MinPartLoadRat;
MaxLoad = this->NomCap * this->MaxPartLoadRat;
Expand All @@ -139,7 +143,7 @@ namespace Boilers {
SizFactor = this->SizFac;
}

void BoilerSpecs::onInitLoopEquip(EnergyPlusData &state, const PlantLocation &EP_UNUSED(calledFromLocation))
void BoilerSpecs::onInitLoopEquip(EnergyPlusData &state, [[maybe_unused]] const PlantLocation &calledFromLocation)
{
this->InitBoiler(state);
this->SizeBoiler(state);
Expand Down
6 changes: 3 additions & 3 deletions src/EnergyPlus/Boilers.hh
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,13 @@ namespace Boilers {
{
}

void simulate(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;
void simulate([[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;

void getDesignCapacities(EnergyPlusData &state, const PlantLocation &EP_UNUSED(calledFromLocation), Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad) override;
void getDesignCapacities(EnergyPlusData &state, [[maybe_unused]] const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad) override;

void getSizingFactor(Real64 &SizFac) override;

void onInitLoopEquip(EnergyPlusData &EP_UNUSED(state), const PlantLocation &EP_UNUSED(calledFromLocation)) override;
void onInitLoopEquip([[maybe_unused]] EnergyPlusData &state, [[maybe_unused]] const PlantLocation &calledFromLocation) override;

void SetupOutputVars(EnergyPlusData &state);

Expand Down
2 changes: 1 addition & 1 deletion src/EnergyPlus/BranchNodeConnections.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ namespace BranchNodeConnections {
}
}

void TestInletOutletNodes(EnergyPlusData &state, bool &EP_UNUSED(ErrorsFound))
void TestInletOutletNodes(EnergyPlusData &state, [[maybe_unused]] bool &ErrorsFound)
{

// SUBROUTINE INFORMATION:
Expand Down
9 changes: 5 additions & 4 deletions src/EnergyPlus/CTElectricGenerator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,11 @@ namespace CTElectricGenerator {
return nullptr; // LCOV_EXCL_LINE
}

void CTGeneratorData::simulate(EnergyPlusData &EP_UNUSED(state), const EnergyPlus::PlantLocation &EP_UNUSED(calledFromLocation),
bool EP_UNUSED(FirstHVACIteration),
Real64 &EP_UNUSED(CurLoad),
bool EP_UNUSED(RunFlag))
void CTGeneratorData::simulate([[maybe_unused]] EnergyPlusData &state,
[[maybe_unused]] const EnergyPlus::PlantLocation &calledFromLocation,
[[maybe_unused]] bool FirstHVACIteration,
[[maybe_unused]] Real64 &CurLoad,
[[maybe_unused]] bool RunFlag)
{
// SUBROUTINE INFORMATION:
// AUTHOR Dan Fisher
Expand Down
2 changes: 1 addition & 1 deletion src/EnergyPlus/ChillerAbsorption.cc
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ namespace ChillerAbsorption {
sizFac = this->SizFac;
}

void BLASTAbsorberSpecs::getDesignTemperatures(Real64 &tempDesCondIn, Real64 &EP_UNUSED(TempDesEvapOut))
void BLASTAbsorberSpecs::getDesignTemperatures(Real64 &tempDesCondIn, [[maybe_unused]] Real64 &TempDesEvapOut)
{
tempDesCondIn = this->TempDesCondIn;
}
Expand Down
4 changes: 2 additions & 2 deletions src/EnergyPlus/ChillerAbsorption.hh
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ namespace ChillerAbsorption {

static PlantComponent *factory(EnergyPlusData &state, std::string const &objectName);

void simulate(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;
void simulate([[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;

void onInitLoopEquip(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation) override;
void onInitLoopEquip([[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation) override;

void getDesignCapacities(EnergyPlusData &state, const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad) override;

Expand Down
3 changes: 2 additions & 1 deletion src/EnergyPlus/ChillerElectricEIR.cc
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ namespace ChillerElectricEIR {
}
}

void ElectricEIRChillerSpecs::getDesignCapacities(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad)
void ElectricEIRChillerSpecs::getDesignCapacities(
[[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad)
{
if (calledFromLocation.loopNum == this->CWLoopNum) {
MinLoad = this->RefCap * this->MinPartLoadRat;
Expand Down
2 changes: 1 addition & 1 deletion src/EnergyPlus/ChillerElectricEIR.hh
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ namespace ChillerElectricEIR {

void setupOutputVars(EnergyPlusData &state);

void simulate(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;
void simulate([[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;

void getDesignCapacities(EnergyPlusData &state, const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad) override;

Expand Down
3 changes: 2 additions & 1 deletion src/EnergyPlus/ChillerIndirectAbsorption.cc
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ namespace ChillerIndirectAbsorption {
}
}

void IndirectAbsorberSpecs::getDesignCapacities(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad)
void IndirectAbsorberSpecs::getDesignCapacities(
[[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad)
{
if (calledFromLocation.loopNum == this->CWLoopNum) {
MinLoad = this->NomCap * this->MinPartLoadRat;
Expand Down
4 changes: 2 additions & 2 deletions src/EnergyPlus/ChillerIndirectAbsorption.hh
Original file line number Diff line number Diff line change
Expand Up @@ -216,13 +216,13 @@ namespace ChillerIndirectAbsorption {

static PlantComponent *factory(EnergyPlusData &state, std::string const &objectName);

void simulate(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;
void simulate([[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;

void getDesignCapacities(EnergyPlusData &state, const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad) override;

void getSizingFactor(Real64 &sizFac) override;

void onInitLoopEquip(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation) override;
void onInitLoopEquip([[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation) override;

void initialize(EnergyPlusData &state, bool RunFlag, Real64 MyLoad);

Expand Down
3 changes: 2 additions & 1 deletion src/EnergyPlus/ChillerReformulatedEIR.cc
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ namespace ChillerReformulatedEIR {
return nullptr; // LCOV_EXCL_LINE
}

void ReformulatedEIRChillerSpecs::getDesignCapacities(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad)
void ReformulatedEIRChillerSpecs::getDesignCapacities(
[[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad)
{
if (calledFromLocation.loopNum == this->CWLoopNum) {
MinLoad = this->RefCap * this->MinPartLoadRat;
Expand Down
4 changes: 2 additions & 2 deletions src/EnergyPlus/ChillerReformulatedEIR.hh
Original file line number Diff line number Diff line change
Expand Up @@ -251,15 +251,15 @@ namespace ChillerReformulatedEIR {

static PlantComponent *factory(EnergyPlusData &state, std::string const &objectName);

void simulate(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;
void simulate([[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;

void getDesignCapacities(EnergyPlusData &state, const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad) override;

void getDesignTemperatures(Real64 &TempDesCondIn, Real64 &TempDesEvapOut) override;

void getSizingFactor(Real64 &sizFac) override;

void onInitLoopEquip(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation) override;
void onInitLoopEquip([[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation) override;

void initialize(EnergyPlusData &state, bool RunFlag, Real64 MyLoad);

Expand Down
2 changes: 1 addition & 1 deletion src/EnergyPlus/Coils/CoilCoolingDXCurveFitOperatingMode.cc
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ void CoilCoolingDXCurveFitOperatingMode::CalcOperatingMode(EnergyPlus::EnergyPlu
Real64 &speedRatio,
int &fanOpMode,
DataLoopNode::NodeData &condInletNode,
DataLoopNode::NodeData &EP_UNUSED(condOutletNode))
[[maybe_unused]] DataLoopNode::NodeData &condOutletNode)
{

// Currently speedNum is 1-based, while this->speeds are zero-based
Expand Down
13 changes: 9 additions & 4 deletions src/EnergyPlus/CondenserLoopTowers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,9 @@ namespace CondenserLoopTowers {
return nullptr; // LCOV_EXCL_LINE
}

void CoolingTower::simulate(EnergyPlusData &state, const PlantLocation &EP_UNUSED(calledFromLocation),
bool const EP_UNUSED(FirstHVACIteration),
void CoolingTower::simulate(EnergyPlusData &state,
[[maybe_unused]] const PlantLocation &calledFromLocation,
[[maybe_unused]] bool const FirstHVACIteration,
Real64 &CurLoad,
bool const RunFlag)
{
Expand All @@ -150,7 +151,11 @@ namespace CondenserLoopTowers {
this->report(RunFlag);
}

void CoolingTower::getDesignCapacities(EnergyPlusData &EP_UNUSED(state), const PlantLocation &EP_UNUSED(calledFromLocation), Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad)
void CoolingTower::getDesignCapacities([[maybe_unused]] EnergyPlusData &state,
[[maybe_unused]] const PlantLocation &calledFromLocation,
Real64 &MaxLoad,
Real64 &MinLoad,
Real64 &OptLoad)
{
MinLoad = 0.0;
MaxLoad = this->TowerNominalCapacity * this->HeatRejectCapNomCapSizingRatio;
Expand All @@ -162,7 +167,7 @@ namespace CondenserLoopTowers {
SizFactor = this->SizFac;
}

void CoolingTower::onInitLoopEquip(EnergyPlusData &state, const PlantLocation &EP_UNUSED(calledFromLocation))
void CoolingTower::onInitLoopEquip(EnergyPlusData &state, [[maybe_unused]] const PlantLocation &calledFromLocation)
{
this->initialize(state);
if (this->TowerType_Num == DataPlant::TypeOf_CoolingTower_VarSpdMerkel) {
Expand Down
6 changes: 3 additions & 3 deletions src/EnergyPlus/CondenserLoopTowers.hh
Original file line number Diff line number Diff line change
Expand Up @@ -390,13 +390,13 @@ namespace CondenserLoopTowers {
{
}

void simulate(EnergyPlusData &EP_UNUSED(state), const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;
void simulate([[maybe_unused]] EnergyPlusData &state, const PlantLocation &calledFromLocation, bool FirstHVACIteration, Real64 &CurLoad, bool RunFlag) override;

void getDesignCapacities(EnergyPlusData &state, const PlantLocation &EP_UNUSED(calledFromLocation), Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad) override;
void getDesignCapacities(EnergyPlusData &state, [[maybe_unused]] const PlantLocation &calledFromLocation, Real64 &MaxLoad, Real64 &MinLoad, Real64 &OptLoad) override;

void getSizingFactor(Real64 &SizFac) override;

void onInitLoopEquip(EnergyPlusData &EP_UNUSED(state), const PlantLocation &EP_UNUSED(calledFromLocation)) override;
void onInitLoopEquip([[maybe_unused]] EnergyPlusData &state, [[maybe_unused]] const PlantLocation &calledFromLocation) override;

void initialize(EnergyPlusData &state);

Expand Down
2 changes: 1 addition & 1 deletion src/EnergyPlus/ConvectionCoefficients.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8142,7 +8142,7 @@ namespace ConvectionCoefficients {
Real64 const SurfTemp,
Real64 const AirTemp,
Real64 const WindAtZ,
Real64 const EP_UNUSED(WindDirect), // Wind direction measured clockwise from geographhic North
[[maybe_unused]] Real64 const WindDirect, // Wind direction measured clockwise from geographhic North
Real64 const RoofArea,
Real64 const RoofPerimeter)
{
Expand Down
12 changes: 6 additions & 6 deletions src/EnergyPlus/DXCoils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -491,11 +491,11 @@ namespace DXCoils {
}

void SimDXCoilMultiMode(EnergyPlusData &state,
std::string const &CompName, // name of the fan coil unit
int const EP_UNUSED(CompOp), // compressor operation; 1=on, 0=off !unused1208
bool const FirstHVACIteration, // true if first hvac iteration
Real64 const PartLoadRatio, // part load ratio
int const DehumidMode, // dehumidification mode (0=normal, 1=enhanced)
std::string const &CompName, // name of the fan coil unit
[[maybe_unused]] int const CompOp, // compressor operation; 1=on, 0=off !unused1208
bool const FirstHVACIteration, // true if first hvac iteration
Real64 const PartLoadRatio, // part load ratio
int const DehumidMode, // dehumidification mode (0=normal, 1=enhanced)
int &CompIndex,
int const FanOpMode // allows parent object to control fan mode
)
Expand Down Expand Up @@ -15550,7 +15550,7 @@ namespace DXCoils {
}

Real64 CalcSecondaryDXCoilsSHR(EnergyPlusData &state,
int const EP_UNUSED(DXCoilNum),
[[maybe_unused]] int const DXCoilNum,
Real64 const EvapAirMassFlow,
Real64 const TotalHeatRemovalRate,
Real64 const PartLoadRatio,
Expand Down
6 changes: 3 additions & 3 deletions src/EnergyPlus/DXFEarClipping.cc
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ namespace DXFEarClipping {
void CalcWallCoordinateTransformation(int const nsides,
Array1D<Vector> &polygon,
Real64 const surfazimuth,
Real64 const EP_UNUSED(surftilt), // unused1208
[[maybe_unused]] Real64 const surftilt, // unused1208
Array1D<Real64> &xvt,
Array1D<Real64> &yvt,
Array1D<Real64> &zvt)
Expand Down Expand Up @@ -731,7 +731,7 @@ namespace DXFEarClipping {

void CalcRfFlrCoordinateTransformation(int const nsides,
Array1D<Vector> &polygon,
Real64 const EP_UNUSED(surfazimuth), // unused1208
[[maybe_unused]] Real64 const surfazimuth, // unused1208
Real64 const surftilt,
Array1D<Real64> &xvt,
Array1D<Real64> &yvt,
Expand Down Expand Up @@ -789,7 +789,7 @@ namespace DXFEarClipping {
}
}

void reorder(int &EP_UNUSED(nvert)) // unused1208
void reorder([[maybe_unused]] int &nvert) // unused1208
{

// Locals
Expand Down
Loading

5 comments on commit 4af4ea4

@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.

develop (Myoldmopar) - x86_64-MacOS-10.15-clang-11.0.0: OK (2277 of 2277 tests passed, 0 test warnings)

Build Badge Test 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.

develop (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5: OK (2297 of 2297 tests passed, 0 test warnings)

Build Badge Test Badge

@nrel-bot
Copy link

Choose a reason for hiding this comment

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

develop (Myoldmopar) - Win64-Windows-10-VisualStudio-16: OK (2250 of 2250 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.

develop (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-UnitTestsCoverage-Debug: OK (1558 of 1558 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.

develop (Myoldmopar) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-IntegrationCoverage-Debug: OK (722 of 722 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.