Skip to content

vtkExecutableRunner : rework parameters splitting

Totally remove the way vtkExecutableRunner was splitting arguments in favor of a more simple approach. There is 2 main reasons for that :

  • first is removing std::regex dependency, because it is not working on GCC 4.8
  • second is because it makes the class simpler and less error-prone. Now if users want to pass arguments by arguments they can. Otherwise the class should have the same behavior as before, just letting the system shell do the actual argument splitting.

Merge request reports