add new files & remove old ones from VS project. Now builds & runs on Windows again

This commit is contained in:
Grant Limberg 2016-11-03 12:10:50 -07:00
parent 8cced06a2d
commit 8ffae313fd
8 changed files with 61 additions and 30 deletions

View file

@ -402,7 +402,7 @@ static int cli(int argc,char **argv)
auto &addr = assignedAddresses[j];
if (addr.is_string()) {
if (aa.length() > 0) aa.push_back(',');
aa.append(addr);
aa.append(addr.get<std::string>());
}
}
}
@ -1194,9 +1194,5 @@ int main(int argc,char **argv)
delete zt1Service;
zt1Service = (OneService *)0;
#ifdef __UNIX_LIKE__
OSUtils::rm(pidPath.c_str());
#endif
return returnValue;
}