Skip to content
Snippets Groups Projects
Commit a06ce189 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[MeL/VTK] Extend warning for unsupported types.

parent a265fa5a
No related branches found
No related tags found
No related merge requests found
...@@ -342,9 +342,9 @@ void VtkMeshConverter::convertArray(vtkDataArray& array, ...@@ -342,9 +342,9 @@ void VtkMeshConverter::convertArray(vtkDataArray& array,
} }
WARN( WARN(
"Array '{:s}' in VTU file uses unsupported data type '{:s}'. The data " "Array '{:s}' in VTU file uses unsupported data type '{:s}' of size "
"array will not be available.", "{:d}. The data array will not be available.",
array.GetName(), array.GetDataTypeAsString()); array.GetName(), array.GetDataTypeAsString(), array.GetDataTypeSize());
} }
} // end namespace MeshLib } // end namespace MeshLib
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