Bugfix: use std string
This commit is contained in:
parent
39308c8146
commit
564a76cc82
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
|
|
Reference in a new issue