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:
Vincent Ambo 2020-05-27 21:56:34 +01:00
parent 86a35d963d
commit 3652326ed2
159 changed files with 659 additions and 654 deletions

View file

@ -1,4 +1,4 @@
#include "compression.hh"
#include "libutil/compression.hh"
#include <cstdio>
#include <cstring>
@ -7,11 +7,11 @@
#include <brotli/decode.h>
#include <brotli/encode.h>
#include <bzlib.h>
#include <glog/logging.h>
#include <lzma.h>
#include "finally.hh"
#include "glog/logging.h"
#include "util.hh"
#include "libutil/finally.hh"
#include "libutil/util.hh"
namespace nix {