Merge branch 'master' into string

This commit is contained in:
KimLS
2013-05-23 00:56:27 -07:00
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++) {