Skip to content

Commit

Permalink
fix wrong function call
Browse files Browse the repository at this point in the history
  • Loading branch information
jmythms committed Jun 9, 2021
1 parent ab0f165 commit 8e0d36a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EnergyPlus/ScheduleManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ namespace ScheduleManager {
CSVAllColumnNameAndValues[colCnt - 1] = timestepColumnValues;
}
} else {
columnValue = std::stod(subString, nullptr);
columnValue = UtilityRoutines::ProcessNumber(subString, errFlag);
if (errFlag) {
++numerrors;
columnValue = 0.0;
Expand Down

8 comments on commit 8e0d36a

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

fixWrongFunctionCall (jmythms) - x86_64-MacOS-10.15-clang-11.0.0: OK (3084 of 3085 tests passed, 0 test warnings)

Failures:\n

ZoneUnitarySysTest Test Summary

  • Passed: 20
  • Failed: 1

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.

fixWrongFunctionCall (jmythms) - Win64-Windows-10-VisualStudio-16: OK (2334 of 2334 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.

fixWrongFunctionCall (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5: OK (3125 of 3125 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.

fixWrongFunctionCall (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-UnitTestsCoverage-Debug: OK (1639 of 1639 tests passed, 0 test warnings)

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

fixWrongFunctionCall (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-IntegrationCoverage-Debug: OK (726 of 726 tests passed, 0 test warnings)

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

fixWrongFunctionCall (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5: Tests Failed (0 of 0 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.

fixWrongFunctionCall (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-UnitTestsCoverage-Debug: Tests Failed (0 of 0 tests passed, 0 test warnings)

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

fixWrongFunctionCall (jmythms) - x86_64-Linux-Ubuntu-18.04-gcc-7.5-IntegrationCoverage-Debug: Tests Failed (0 of 0 tests passed, 0 test warnings)

Build Badge Test Badge Coverage Badge

Please sign in to comment.