aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/utils/mutex.h')
-rw-r--r--src/lib/utils/mutex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/utils/mutex.h b/src/lib/utils/mutex.h
index 46a652bba..6e24815bb 100644
--- a/src/lib/utils/mutex.h
+++ b/src/lib/utils/mutex.h
@@ -27,7 +27,7 @@ typedef std::mutex mutex_type;
namespace Botan {
template<typename Mutex>
-class lock_guard
+class lock_guard final
{
public:
explicit lock_guard(Mutex& m) : m_mutex(m)
@@ -41,7 +41,7 @@ class lock_guard
Mutex& m_mutex;
};
-class noop_mutex
+class noop_mutex final
{
public:
void lock() {}