| 17 | |
| 18 | namespace seissol { |
| 19 | SIUnit::SIUnit(const std::string& unit, bool binary) : unit(unit), binary(binary) {} |
| 20 | |
| 21 | std::string SIUnit::formatTime(double value, bool exact, int digits) const { |
| 22 | const double byDay = std::floor(value / (60 * 60 * 24)); |
nothing calls this directly
no outgoing calls
no test coverage detected