Bugfix: use std string

This commit is contained in:
Hrvoje Jasak 2016-06-03 17:11:33 +01:00
parent 39308c8146
commit 564a76cc82

View file

@ -1247,7 +1247,7 @@ bool ping(const word& hostname, const label timeOut)
} }
int system(const string& command) int system(const std::string& command)
{ {
return std::system(command.c_str()); return std::system(command.c_str());
} }