Windows compile fix

This commit is contained in:
KimLS
2013-05-23 00:55:29 -07:00
parent 0fdfe025cb
commit 320494c83d
3 changed files with 5 additions and 12 deletions
+2 -2
View File
@@ -165,8 +165,8 @@ ProcLauncher::ProcRef ProcLauncher::Launch(Spec *&to_launch) {
// Create the child process.
//glue together all the nice command line arguments
string args(it->program);
vector<string>::iterator cur, end;
std::string args(it->program);
std::vector<std::string>::iterator cur, end;
cur = it->args.begin();
end = it->args.end();
for(; cur != end; cur++) {