style(3p/nix): Reformat all includes to match new style
This commit is contained in:
parent
b508f5b91a
commit
c758de9d22
119 changed files with 298 additions and 106 deletions
1
third_party/nix/src/libexpr/attr-path.cc
vendored
1
third_party/nix/src/libexpr/attr-path.cc
vendored
|
|
@ -1,4 +1,5 @@
|
|||
#include "attr-path.hh"
|
||||
|
||||
#include "eval-inline.hh"
|
||||
#include "util.hh"
|
||||
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/attr-path.hh
vendored
1
third_party/nix/src/libexpr/attr-path.hh
vendored
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
#include "eval.hh"
|
||||
|
||||
namespace nix {
|
||||
|
|
|
|||
2
third_party/nix/src/libexpr/attr-set.cc
vendored
2
third_party/nix/src/libexpr/attr-set.cc
vendored
|
|
@ -1,5 +1,7 @@
|
|||
#include "attr-set.hh"
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
#include "eval-inline.hh"
|
||||
|
||||
namespace nix {
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/attr-set.hh
vendored
1
third_party/nix/src/libexpr/attr-set.hh
vendored
|
|
@ -1,6 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <algorithm>
|
||||
|
||||
#include "nixexpr.hh"
|
||||
#include "symbol-table.hh"
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
#include "common-eval-args.hh"
|
||||
|
||||
#include "download.hh"
|
||||
#include "eval.hh"
|
||||
#include "shared.hh"
|
||||
|
|
|
|||
11
third_party/nix/src/libexpr/eval.cc
vendored
11
third_party/nix/src/libexpr/eval.cc
vendored
|
|
@ -1,13 +1,16 @@
|
|||
#include "eval.hh"
|
||||
#include <glog/logging.h>
|
||||
#include <sys/resource.h>
|
||||
#include <sys/time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <algorithm>
|
||||
#include <chrono>
|
||||
#include <cstring>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
|
||||
#include <glog/logging.h>
|
||||
#include <sys/resource.h>
|
||||
#include <sys/time.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "derivations.hh"
|
||||
#include "download.hh"
|
||||
#include "eval-inline.hh"
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/eval.hh
vendored
1
third_party/nix/src/libexpr/eval.hh
vendored
|
|
@ -3,6 +3,7 @@
|
|||
#include <map>
|
||||
#include <optional>
|
||||
#include <unordered_map>
|
||||
|
||||
#include "attr-set.hh"
|
||||
#include "config.hh"
|
||||
#include "hash.hh"
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
#include "function-trace.hh"
|
||||
|
||||
#include <glog/logging.h>
|
||||
|
||||
namespace nix {
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <chrono>
|
||||
|
||||
#include "eval.hh"
|
||||
|
||||
namespace nix {
|
||||
|
|
|
|||
5
third_party/nix/src/libexpr/get-drvs.cc
vendored
5
third_party/nix/src/libexpr/get-drvs.cc
vendored
|
|
@ -1,7 +1,10 @@
|
|||
#include "get-drvs.hh"
|
||||
#include <glog/logging.h>
|
||||
|
||||
#include <cstring>
|
||||
#include <regex>
|
||||
|
||||
#include <glog/logging.h>
|
||||
|
||||
#include "derivations.hh"
|
||||
#include "eval-inline.hh"
|
||||
#include "util.hh"
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/get-drvs.hh
vendored
1
third_party/nix/src/libexpr/get-drvs.hh
vendored
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
#include "eval.hh"
|
||||
|
||||
namespace nix {
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/json-to-value.cc
vendored
1
third_party/nix/src/libexpr/json-to-value.cc
vendored
|
|
@ -1,4 +1,5 @@
|
|||
#include "json-to-value.hh"
|
||||
|
||||
#include <cstring>
|
||||
|
||||
namespace nix {
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/json-to-value.hh
vendored
1
third_party/nix/src/libexpr/json-to-value.hh
vendored
|
|
@ -1,6 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "eval.hh"
|
||||
|
||||
namespace nix {
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/names.cc
vendored
1
third_party/nix/src/libexpr/names.cc
vendored
|
|
@ -1,4 +1,5 @@
|
|||
#include "names.hh"
|
||||
|
||||
#include "util.hh"
|
||||
|
||||
namespace nix {
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/names.hh
vendored
1
third_party/nix/src/libexpr/names.hh
vendored
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <memory>
|
||||
#include <regex>
|
||||
|
||||
#include "types.hh"
|
||||
|
||||
namespace nix {
|
||||
|
|
|
|||
2
third_party/nix/src/libexpr/nixexpr.cc
vendored
2
third_party/nix/src/libexpr/nixexpr.cc
vendored
|
|
@ -1,5 +1,7 @@
|
|||
#include "nixexpr.hh"
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
#include "derivations.hh"
|
||||
#include "util.hh"
|
||||
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/nixexpr.hh
vendored
1
third_party/nix/src/libexpr/nixexpr.hh
vendored
|
|
@ -1,6 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <map>
|
||||
|
||||
#include "symbol-table.hh"
|
||||
#include "value.hh"
|
||||
|
||||
|
|
|
|||
9
third_party/nix/src/libexpr/primops.cc
vendored
9
third_party/nix/src/libexpr/primops.cc
vendored
|
|
@ -1,12 +1,15 @@
|
|||
#include "primops.hh"
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstring>
|
||||
#include <regex>
|
||||
|
||||
#include <dlfcn.h>
|
||||
#include <glog/logging.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/types.h>
|
||||
#include <unistd.h>
|
||||
#include <algorithm>
|
||||
#include <cstring>
|
||||
#include <regex>
|
||||
|
||||
#include "archive.hh"
|
||||
#include "derivations.hh"
|
||||
#include "download.hh"
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/primops.hh
vendored
1
third_party/nix/src/libexpr/primops.hh
vendored
|
|
@ -1,5 +1,6 @@
|
|||
#include <tuple>
|
||||
#include <vector>
|
||||
|
||||
#include "eval.hh"
|
||||
|
||||
namespace nix {
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
#include <glog/logging.h>
|
||||
#include <sys/time.h>
|
||||
#include <nlohmann/json.hpp>
|
||||
#include <regex>
|
||||
|
||||
#include <glog/logging.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
#include "download.hh"
|
||||
#include "eval-inline.hh"
|
||||
#include "hash.hh"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
#include <glog/logging.h>
|
||||
#include <sys/time.h>
|
||||
#include <nlohmann/json.hpp>
|
||||
#include <regex>
|
||||
|
||||
#include <glog/logging.h>
|
||||
#include <sys/time.h>
|
||||
|
||||
#include "download.hh"
|
||||
#include "eval-inline.hh"
|
||||
#include "pathlocks.hh"
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/symbol-table.hh
vendored
1
third_party/nix/src/libexpr/symbol-table.hh
vendored
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <map>
|
||||
#include <unordered_set>
|
||||
|
||||
#include "types.hh"
|
||||
|
||||
namespace nix {
|
||||
|
|
|
|||
2
third_party/nix/src/libexpr/value-to-json.cc
vendored
2
third_party/nix/src/libexpr/value-to-json.cc
vendored
|
|
@ -1,6 +1,8 @@
|
|||
#include "value-to-json.hh"
|
||||
|
||||
#include <cstdlib>
|
||||
#include <iomanip>
|
||||
|
||||
#include "eval-inline.hh"
|
||||
#include "json.hh"
|
||||
#include "util.hh"
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/value-to-json.hh
vendored
1
third_party/nix/src/libexpr/value-to-json.hh
vendored
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
#include "eval.hh"
|
||||
#include "nixexpr.hh"
|
||||
|
||||
|
|
|
|||
2
third_party/nix/src/libexpr/value-to-xml.cc
vendored
2
third_party/nix/src/libexpr/value-to-xml.cc
vendored
|
|
@ -1,5 +1,7 @@
|
|||
#include "value-to-xml.hh"
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
#include "eval-inline.hh"
|
||||
#include "util.hh"
|
||||
#include "xml-writer.hh"
|
||||
|
|
|
|||
1
third_party/nix/src/libexpr/value-to-xml.hh
vendored
1
third_party/nix/src/libexpr/value-to-xml.hh
vendored
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
#include <map>
|
||||
#include <string>
|
||||
|
||||
#include "eval.hh"
|
||||
#include "nixexpr.hh"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue