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
15
third_party/nix/src/libstore/local-store.cc
vendored
15
third_party/nix/src/libstore/local-store.cc
vendored
|
|
@ -1,4 +1,4 @@
|
|||
#include "local-store.hh"
|
||||
#include "libstore/local-store.hh"
|
||||
|
||||
#include <algorithm>
|
||||
#include <cerrno>
|
||||
|
|
@ -25,12 +25,13 @@
|
|||
#include <unistd.h>
|
||||
#include <utime.h>
|
||||
|
||||
#include "archive.hh"
|
||||
#include "derivations.hh"
|
||||
#include "globals.hh"
|
||||
#include "nar-info.hh"
|
||||
#include "pathlocks.hh"
|
||||
#include "worker-protocol.hh"
|
||||
#include "generated/schema.sql.hh"
|
||||
#include "libstore/derivations.hh"
|
||||
#include "libstore/globals.hh"
|
||||
#include "libstore/nar-info.hh"
|
||||
#include "libstore/pathlocks.hh"
|
||||
#include "libstore/worker-protocol.hh"
|
||||
#include "libutil/archive.hh"
|
||||
|
||||
namespace nix {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue