about summary refs log tree commit diff
path: root/src/libutil
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil')
-rw-r--r--src/libutil/logging.cc2
-rw-r--r--src/libutil/logging.hh1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/libutil/logging.cc b/src/libutil/logging.cc
index 2d0acca24216..43245f61c601 100644
--- a/src/libutil/logging.cc
+++ b/src/libutil/logging.cc
@@ -76,7 +76,7 @@ Logger * makeDefaultLogger()
     return new SimpleLogger();
 }
 
-std::atomic<uint64_t> Activity::nextId{(uint64_t) getpid() << 32};
+std::atomic<uint64_t> nextId{(uint64_t) getpid() << 32};
 
 Activity::Activity() : id(nextId++) { };
 
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh
index ddfc336fee07..9ef6e3ee30e4 100644
--- a/src/libutil/logging.hh
+++ b/src/libutil/logging.hh
@@ -15,7 +15,6 @@ typedef enum {
 
 class Activity
 {
-    static std::atomic<uint64_t> nextId;
 public:
     typedef uint64_t t;
     const t id;