1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-11 13:06:01 +01:00

Factor out common showBytes()

This commit is contained in:
Eelco Dolstra 2020-10-06 10:40:49 +02:00
parent d0bb544128
commit 6691256e79
4 changed files with 16 additions and 18 deletions

View file

@ -573,4 +573,7 @@ template<class... Ts> struct overloaded : Ts... { using Ts::operator()...; };
template<class... Ts> overloaded(Ts...) -> overloaded<Ts...>;
std::string showBytes(uint64_t bytes);
}