diff options
Diffstat (limited to 'libmemunreachable/Semaphore.h')
-rw-r--r-- | libmemunreachable/Semaphore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmemunreachable/Semaphore.h b/libmemunreachable/Semaphore.h index 45e8c819d..6bcf4ea97 100644 --- a/libmemunreachable/Semaphore.h +++ b/libmemunreachable/Semaphore.h @@ -24,7 +24,7 @@ class Semaphore { public: - Semaphore(int count = 0) : count_(count) {} + explicit Semaphore(int count = 0) : count_(count) {} ~Semaphore() = default; void Wait(std::chrono::milliseconds ms) { |