diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-11-13 17:38:37 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-12-05 20:30:29 +0100 |
commit | 0678e4d56a839f940af8aa70059ced48b393e817 (patch) | |
tree | 57b890f08623bed716288a1e20c057a2c74bd63e /src | |
parent | 79142cbbe1d5145a18950f4a955e2f2b1878576b (diff) |
Move #include
(cherry picked from commit 8beedd44861d1fe7208609ee8d231ca1c02dedf6)
Diffstat (limited to 'src')
-rw-r--r-- | src/libexpr/eval.cc | 1 | ||||
-rw-r--r-- | src/libexpr/eval.hh | 1 | ||||
-rw-r--r-- | src/libexpr/function-trace.hh | 3 |
3 files changed, 3 insertions, 2 deletions
diff --git a/src/libexpr/eval.cc b/src/libexpr/eval.cc index b89a67b19..e2070d546 100644 --- a/src/libexpr/eval.cc +++ b/src/libexpr/eval.cc @@ -7,6 +7,7 @@ #include "eval-inline.hh" #include "download.hh" #include "json.hh" +#include "function-trace.hh" #include <algorithm> #include <chrono> diff --git a/src/libexpr/eval.hh b/src/libexpr/eval.hh index 419b703fc..85aa1ccfe 100644 --- a/src/libexpr/eval.hh +++ b/src/libexpr/eval.hh @@ -6,7 +6,6 @@ #include "symbol-table.hh" #include "hash.hh" #include "config.hh" -#include "function-trace.hh" #include <map> #include <optional> diff --git a/src/libexpr/function-trace.hh b/src/libexpr/function-trace.hh index 8b0ec848d..2c39b7430 100644 --- a/src/libexpr/function-trace.hh +++ b/src/libexpr/function-trace.hh @@ -1,7 +1,8 @@ #pragma once #include "eval.hh" -#include <sys/time.h> + +#include <chrono> namespace nix { |