------------------------------------------------------------------------------
| 155 | |
| 156 | //------------------------------------------------------------------------------ |
| 157 | void vtkMutableDirectedGraph::LazyAddEdge(vtkIdType u, vtkIdType v, vtkVariantArray* propertyArr) |
| 158 | { |
| 159 | this->AddEdgeInternal(u, v, true, propertyArr, nullptr); |
| 160 | } |
| 161 | |
| 162 | //------------------------------------------------------------------------------ |
| 163 | void vtkMutableDirectedGraph::LazyAddEdge( |
nothing calls this directly
no test coverage detected