You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto proc = Popen(subprocess::util::split(command), error{PIPE}, cwd{where});
to compile.
Unfortunately it gives the following error:
/home/pklos/projects/(...).cpp:70:80: error: no matching function for call to ‘subprocess::Popen::Popen(std::vector<std::__cxx11::basic_string<char> >, subprocess::error, subprocess::cwd)’
auto proc = Popen(subprocess::util::split(command), error{PIPE}, cwd{where});
I don't see another equivalent of python shlex.split in your library.
The text was updated successfully, but these errors were encountered:
It would not be a stretch to expect this:
to compile.
Unfortunately it gives the following error:
I don't see another equivalent of python shlex.split in your library.
The text was updated successfully, but these errors were encountered: