refactor(3p/nix): Anchor local includes at src/
Previously all includes were anchored in one global mess of header files. This moves the includes into filesystem "namespaces" (if you will) for each sub-package of Nix. Note: This commit does not introduce the relevant build system changes.
This commit is contained in:
parent
86a35d963d
commit
3652326ed2
159 changed files with 659 additions and 654 deletions
24
third_party/nix/src/nix-daemon/nix-daemon.cc
vendored
24
third_party/nix/src/nix-daemon/nix-daemon.cc
vendored
|
|
@ -15,18 +15,18 @@
|
|||
#include <sys/wait.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "affinity.hh"
|
||||
#include "archive.hh"
|
||||
#include "derivations.hh"
|
||||
#include "finally.hh"
|
||||
#include "globals.hh"
|
||||
#include "legacy.hh"
|
||||
#include "local-store.hh"
|
||||
#include "monitor-fd.hh"
|
||||
#include "serialise.hh"
|
||||
#include "shared.hh"
|
||||
#include "util.hh"
|
||||
#include "worker-protocol.hh"
|
||||
#include "libmain/shared.hh"
|
||||
#include "libstore/derivations.hh"
|
||||
#include "libstore/globals.hh"
|
||||
#include "libstore/local-store.hh"
|
||||
#include "libstore/worker-protocol.hh"
|
||||
#include "libutil/affinity.hh"
|
||||
#include "libutil/archive.hh"
|
||||
#include "libutil/finally.hh"
|
||||
#include "libutil/monitor-fd.hh"
|
||||
#include "libutil/serialise.hh"
|
||||
#include "libutil/util.hh"
|
||||
#include "nix/legacy.hh"
|
||||
|
||||
using namespace nix;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue