From 564a76cc82d7ff611a6e95201603e946644f6ebb Mon Sep 17 00:00:00 2001 From: Hrvoje Jasak Date: Fri, 3 Jun 2016 17:11:33 +0100 Subject: [PATCH] Bugfix: use std string --- src/OSspecific/MSWindows/MSwindows.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OSspecific/MSWindows/MSwindows.C b/src/OSspecific/MSWindows/MSwindows.C index 874c6dc77..70551034a 100644 --- a/src/OSspecific/MSWindows/MSwindows.C +++ b/src/OSspecific/MSWindows/MSwindows.C @@ -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()); }