Skip to content
Snippets Groups Projects
Commit b73f1ff7 authored by Alexis Girault's avatar Alexis Girault
Browse files

COMP: fix return value in MappedVertexArray

InsertNextTypedTuple needs to return a value or
compilation error on windows.
parent db2137f7
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ public:
void InsertVariantValue(vtkIdType idx, vtkVariant value);
void SetTypedTuple(vtkIdType i, const ValueType *t) {}
void InsertTypedTuple(vtkIdType i, const ValueType *t) {}
virtual vtkIdType InsertNextTypedTuple(const ValueType *t) {}
vtkIdType InsertNextTypedTuple(const ValueType *t) { return 0; }
protected:
MappedVertexArray() {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment