mirror of
https://github.com/NixOS/nix
synced 2025-06-28 17:51:15 +02:00
Style fixes
This commit is contained in:
parent
92ac8df0ec
commit
35a0ac1838
4 changed files with 40 additions and 15 deletions
|
@ -239,7 +239,12 @@ struct ClientSettings
|
|||
}
|
||||
};
|
||||
|
||||
static void writeValidPathInfo(ref<Store> store, unsigned int clientVersion, Sink & to, std::shared_ptr<const ValidPathInfo> info) {
|
||||
static void writeValidPathInfo(
|
||||
ref<Store> store,
|
||||
unsigned int clientVersion,
|
||||
Sink & to,
|
||||
std::shared_ptr<const ValidPathInfo> info)
|
||||
{
|
||||
to << (info->deriver ? store->printStorePath(*info->deriver) : "")
|
||||
<< info->narHash.to_string(Base16, false);
|
||||
writeStorePaths(*store, to, info->references);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue