| 314 | } |
| 315 | |
| 316 | bool HaveSameUnits(SpeedInUnits const & lhs, SpeedInUnits const & rhs) |
| 317 | { |
| 318 | return lhs.GetUnits() == rhs.GetUnits() || !lhs.IsNumeric() || !rhs.IsNumeric(); |
| 319 | } |
| 320 | |
| 321 | bool IsNumeric(MaxspeedType speed) |
| 322 | { |
no test coverage detected