int2String -> std::to_string
[?]
Oct 30, 2015, 5:01 PM
X6FOUYFJ5ODEOMHLL6AHM6KI2JRZ2XOI76NYJYJNDUQBTV5UJLBACDependencies
- [2]
H7SZRHUBUse nix::willBuildLocally() - [3]
IE2PRAQUhydra-queue-runner: Send build notifications - [4]
SODOV2CMAutomatically reload $NIX_REMOTE_SYSTEMS when it changes - [5]
K5G5GZY7Guard against concurrent invocations of hydra-queue-runner - [6]
O3NM62IZSupport multiple machines files - [*]
24BMQDZAStart of single-process hydra-queue-runner
Change contents
- replacement in src/hydra-queue-runner/hydra-queue-runner.cc at line 97
+ " - " + int2String(settings.maxBuildJobs) + " 1");+ " - " + std::to_string(settings.maxBuildJobs) + " 1"); - replacement in src/hydra-queue-runner/hydra-queue-runner.cc at line 436
Strings argv({"hydra-notify", "build", int2String(item.first)});Strings argv({"hydra-notify", "build", std::to_string(item.first)}); - replacement in src/hydra-queue-runner/hydra-queue-runner.cc at line 438
argv.push_back(int2String(id));argv.push_back(std::to_string(id));