Move progress-bar.cc to libmain

Needed so that we can include it as a logger in loggers.cc without
adding a dependency on nix

This also requires moving names.hh to libutil to prevent a circular
dependency between libmain and libexpr
This commit is contained in:
regnat 2020-06-08 17:16:52 +02:00
parent c27f92698b
commit 801112de1a
6 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
#include "loggers.hh"
#include "../nix/progress-bar.hh"
#include "progress-bar.hh"
namespace nix {

View file

@ -8,7 +8,7 @@
#include "attr-path.hh"
#include "finally.hh"
#include "../nix/legacy.hh"
#include "../nix/progress-bar.hh"
#include "progress-bar.hh"
#include "tarfile.hh"
#include <iostream>