| 1745 | } |
| 1746 | |
| 1747 | bool EpwDataPoint::setDay(int day) { |
| 1748 | if (1 > day || 31 < day) { |
| 1749 | LOG_FREE(Error, "openstudio.EpwFile", "Day value " << day << " out of range"); |
| 1750 | return false; |
| 1751 | } |
| 1752 | m_day = day; |
| 1753 | return true; |
| 1754 | } |
| 1755 | |
| 1756 | bool EpwDataPoint::setDay(const std::string& day) { |
| 1757 | bool ok; |
no test coverage detected