| 1226 | } |
| 1227 | |
| 1228 | void Building::setRelocatableNoFail(bool isRelocatable) { |
| 1229 | bool result = getImpl<detail::Building_Impl>()->setRelocatable(isRelocatable); |
| 1230 | OS_ASSERT(result); |
| 1231 | } |
| 1232 | |
| 1233 | void Building::resetRelocatable() { |
| 1234 | getImpl<detail::Building_Impl>()->resetRelocatable(); |
nothing calls this directly
no test coverage detected