Skip to content

Remove const qualifier for std::string return type

Cory Quammen requested to merge cory.quammen/vtk:remote-const-return-type into master

The const qualifier for the return type of vtkGLTFExporter::WriteToString() is not needed. The return value is a copy of a string, so const isn't needed to protect internal state of the vtkGLTFExporter object.

Merge request reports