@@ -32,7 +32,7 @@ std::string escapeUri(std::string uri)
3232 return uri;
3333}
3434
35- static string currentLoad;
35+ static std:: string currentLoad;
3636
3737static AutoCloseFD openSlotLock (const Machine & m, uint64_t slot)
3838{
@@ -97,7 +97,7 @@ static int main_build_remote(int argc, char * * argv)
9797 }
9898
9999 std::optional<StorePath> drvPath;
100- string storeUri;
100+ std:: string storeUri;
101101
102102 while (true ) {
103103
@@ -183,7 +183,7 @@ static int main_build_remote(int argc, char * * argv)
183183 else
184184 {
185185 // build the hint template.
186- string errorText =
186+ std:: string errorText =
187187 " Failed to find a machine for remote build!\n "
188188 " derivation: %s\n required (system, features): (%s, %s)" ;
189189 errorText += " \n %s available machines:" ;
@@ -193,7 +193,7 @@ static int main_build_remote(int argc, char * * argv)
193193 errorText += " \n (%s, %s, %s, %s)" ;
194194
195195 // add the template values.
196- string drvstr;
196+ std:: string drvstr;
197197 if (drvPath.has_value ())
198198 drvstr = drvPath->to_string ();
199199 else
@@ -208,7 +208,7 @@ static int main_build_remote(int argc, char * * argv)
208208
209209 for (auto & m : machines)
210210 error
211- % concatStringsSep<std::vector<string>>(" , " , m.systemTypes )
211+ % concatStringsSep<std::vector<std:: string>>(" , " , m.systemTypes )
212212 % m.maxJobs
213213 % concatStringsSep<StringSet>(" , " , m.supportedFeatures )
214214 % concatStringsSep<StringSet>(" , " , m.mandatoryFeatures );
0 commit comments