| 55 | } |
| 56 | |
| 57 | Unit Unit_Impl::clone() const { |
| 58 | OS_ASSERT(system() == UnitSystem::Mixed); |
| 59 | std::shared_ptr<Unit_Impl> impl(new Unit_Impl(*this)); |
| 60 | return Unit(impl); |
| 61 | } |
| 62 | |
| 63 | Unit Unit_Impl::cloneToMixed() const { |
| 64 | std::shared_ptr<Unit_Impl> impl(new Unit_Impl(*this)); |
no test coverage detected