diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-09-21 18:40:11 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-09-21 18:42:21 +0200 |
commit | d51ba430473368b29abfd1a8c4655da74b3a780c (patch) | |
tree | f4c378cd3aa1c310eaaff5d04af0cf6f4f068288 /src/libstore/http-binary-cache-store.cc | |
parent | e8e1d420f364afbfface61d3f03889e10e6066c9 (diff) |
Move Callback into its own header
This gets rid of the inclusion of <future> in util.hh, cutting
compilation time by ~20s (CPU time).
Issue #4045.
Diffstat (limited to 'src/libstore/http-binary-cache-store.cc')
-rw-r--r-- | src/libstore/http-binary-cache-store.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstore/http-binary-cache-store.cc b/src/libstore/http-binary-cache-store.cc index f4ab15a10..86be7c006 100644 --- a/src/libstore/http-binary-cache-store.cc +++ b/src/libstore/http-binary-cache-store.cc @@ -2,6 +2,7 @@ #include "filetransfer.hh" #include "globals.hh" #include "nar-info-disk-cache.hh" +#include "callback.hh" namespace nix { |