diff options
Diffstat (limited to 'src/lib/utils/semaphore.h')
-rw-r--r-- | src/lib/utils/semaphore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/semaphore.h b/src/lib/utils/semaphore.h index 3495043e5..994a15f21 100644 --- a/src/lib/utils/semaphore.h +++ b/src/lib/utils/semaphore.h @@ -16,7 +16,7 @@ namespace Botan { class Semaphore { public: - Semaphore(int value = 0) : m_value(value), m_wakeups(0) {} + explicit Semaphore(int value = 0) : m_value(value), m_wakeups(0) {} void acquire(); |