From 588dad4084711e71a4dcb0758b2daf2fe03e2c8b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 29 May 2017 15:53:16 +0200 Subject: [PATCH] Fix build failure on Debian/Ubuntu http://hydra.nixos.org/build/53537463 --- src/libutil/logging.cc | 2 +- src/libutil/logging.hh | 1 - src/nix/progress-bar.cc | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libutil/logging.cc b/src/libutil/logging.cc index 2d0acca24..43245f61c 100644 --- a/src/libutil/logging.cc +++ b/src/libutil/logging.cc @@ -76,7 +76,7 @@ Logger * makeDefaultLogger() return new SimpleLogger(); } -std::atomic Activity::nextId{(uint64_t) getpid() << 32}; +std::atomic nextId{(uint64_t) getpid() << 32}; Activity::Activity() : id(nextId++) { }; diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh index ddfc336fe..9ef6e3ee3 100644 --- a/src/libutil/logging.hh +++ b/src/libutil/logging.hh @@ -15,7 +15,6 @@ typedef enum { class Activity { - static std::atomic nextId; public: typedef uint64_t t; const t id; diff --git a/src/nix/progress-bar.cc b/src/nix/progress-bar.cc index 24e435f81..2ecbea8ee 100644 --- a/src/nix/progress-bar.cc +++ b/src/nix/progress-bar.cc @@ -24,6 +24,7 @@ private: std::string uri; uint64_t current = 0; uint64_t expected = 0; + DownloadInfo(const std::string & uri) : uri(uri) { } }; struct State