| 2188 | |
| 2189 | template <> |
| 2190 | std::any AnalysisMergeConflict::GetPathItem<std::any>(const std::string& path) |
| 2191 | { |
| 2192 | void* val = BNAnalysisMergeConflictGetPathItem(m_object, path.c_str()); |
| 2193 | if (val == nullptr) |
| 2194 | throw SyncException(fmt::format("Failed to find merge conflict path item \"{}\"", path)); |
| 2195 | return *(std::any*)val; |
| 2196 | } |
| 2197 | |
| 2198 | |
| 2199 | template <> |
nothing calls this directly
no test coverage detected