From 8f6af0f837d98e4758f73c91640ee64b7f8ddfd5 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Thu, 24 Aug 2017 17:53:27 +1000 Subject: [PATCH] job/queue: make single argument constructor explicit --- job/queue.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/job/queue.hpp b/job/queue.hpp index ceac6986..ddc3194e 100644 --- a/job/queue.hpp +++ b/job/queue.hpp @@ -32,7 +32,7 @@ namespace util::job { class queue { public: queue (); - queue (unsigned thread_count); + explicit queue (unsigned thread_count); ~queue (); using cookie = int;