1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-02 13:31:48 +02:00

Rename UnionInputAccessor to MountedInputAccessor

This commit is contained in:
Eelco Dolstra 2023-11-14 14:01:38 +01:00
parent 21140c987b
commit 7f576f5dfe
4 changed files with 19 additions and 19 deletions

View file

@ -0,0 +1,9 @@
#pragma once
#include "input-accessor.hh"
namespace nix {
ref<InputAccessor> makeMountedInputAccessor(std::map<CanonPath, ref<InputAccessor>> mounts);
}