mirror of
https://github.com/NixOS/nix
synced 2025-07-02 13:31:48 +02:00
Move FSInputAccessor into a separate file
This commit is contained in:
parent
55c63c9b89
commit
48012603b3
17 changed files with 183 additions and 159 deletions
|
@ -9,6 +9,7 @@
|
|||
#include "filetransfer.hh"
|
||||
#include "json.hh"
|
||||
#include "function-trace.hh"
|
||||
#include "fs-input-accessor.hh"
|
||||
|
||||
#include <algorithm>
|
||||
#include <chrono>
|
||||
|
|
|
@ -22,6 +22,7 @@ class EvalState;
|
|||
class StorePath;
|
||||
struct SourcePath;
|
||||
enum RepairFlag : bool;
|
||||
struct FSInputAccessor;
|
||||
|
||||
|
||||
typedef void (* PrimOpFun) (EvalState & state, const PosIdx pos, Value * * args, Value & v);
|
||||
|
|
|
@ -639,6 +639,7 @@ formal
|
|||
#include "eval.hh"
|
||||
#include "filetransfer.hh"
|
||||
#include "fetchers.hh"
|
||||
#include "fs-input-accessor.hh"
|
||||
#include "store-api.hh"
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include "eval.hh"
|
||||
#include "util.hh"
|
||||
#include "fs-input-accessor.hh"
|
||||
|
||||
namespace nix {
|
||||
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
#include "value-to-json.hh"
|
||||
#include "value-to-xml.hh"
|
||||
#include "primops.hh"
|
||||
#include "fs-input-accessor.hh"
|
||||
|
||||
#include <boost/container/small_vector.hpp>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue