aboutsummaryrefslogtreecommitdiff
path: root/src/nix/progress-bar.hh
diff options
context:
space:
mode:
authorregnat <rg@regnat.ovh>2020-06-08 17:16:52 +0200
committerregnat <rg@regnat.ovh>2020-06-08 17:16:52 +0200
commit801112de1af8e519e29e1e1c678f97de45a8c49d (patch)
tree2a78ac14d600486665ade3f8f1d3cf026b349f99 /src/nix/progress-bar.hh
parentc27f92698bbbb99df3c4403db6590276318940a0 (diff)
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
Diffstat (limited to 'src/nix/progress-bar.hh')
-rw-r--r--src/nix/progress-bar.hh13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/nix/progress-bar.hh b/src/nix/progress-bar.hh
deleted file mode 100644
index 60d0a2076..000000000
--- a/src/nix/progress-bar.hh
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-
-#include "logging.hh"
-
-namespace nix {
-
-Logger* makeProgressBar(bool printBuildLogs = false);
-
-void startProgressBar(bool printBuildLogs = false);
-
-void stopProgressBar();
-
-}