1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-12-05 16:41:01 +01:00

"unsigned" -> size_t

Slight cleanup.
This commit is contained in:
Eelco Dolstra 2024-09-02 17:28:55 +02:00
parent a33cb8af56
commit b7acd1c414
2 changed files with 6 additions and 6 deletions

View file

@ -184,13 +184,13 @@ void Worker::wakeUp(GoalPtr goal)
}
unsigned Worker::getNrLocalBuilds()
size_t Worker::getNrLocalBuilds()
{
return nrLocalBuilds;
}
unsigned Worker::getNrSubstitutions()
size_t Worker::getNrSubstitutions()
{
return nrSubstitutions;
}