mirror of
https://github.com/NixOS/nix.git
synced 2025-11-18 00:12:43 +01:00
Make Machine::systemTypes a set not vector
This is more conceptually correct (the order does not matter), and also matches what Hydra already does. (Nix and Hydra matching is needed for dedup https://github.com/NixOS/hydra/issues/1164)
This commit is contained in:
parent
b6aee9a93f
commit
739032762a
3 changed files with 4 additions and 6 deletions
|
|
@ -10,7 +10,7 @@ class Store;
|
|||
struct Machine {
|
||||
|
||||
const std::string storeUri;
|
||||
const std::vector<std::string> systemTypes;
|
||||
const std::set<std::string> systemTypes;
|
||||
const std::string sshKey;
|
||||
const unsigned int maxJobs;
|
||||
const unsigned int speedFactor;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue