| 138 | } |
| 139 | |
| 140 | std::unique_ptr<FeatureType> FeaturesLoaderGuard::GetOriginalOrEditedFeatureByIndex(uint32_t index) const |
| 141 | { |
| 142 | ASSERT(m_handle.IsAlive(), ()); |
| 143 | ASSERT_NOT_EQUAL(m_source->GetFeatureStatus(index), FeatureStatus::Created, ()); |
| 144 | return GetFeatureByIndex(index); |
| 145 | } |
| 146 | |
| 147 | std::unique_ptr<FeatureType> FeaturesLoaderGuard::GetFeatureByIndex(uint32_t index) const |
| 148 | { |
nothing calls this directly
no test coverage detected