aboutsummaryrefslogtreecommitdiffstats
path: root/src/mutex/mutex.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mutex/mutex.h')
-rw-r--r--src/mutex/mutex.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mutex/mutex.h b/src/mutex/mutex.h
index a04ff83c9..fcb0e9982 100644
--- a/src/mutex/mutex.h
+++ b/src/mutex/mutex.h
@@ -15,7 +15,7 @@ namespace Botan {
/*
* Mutex Base Class
*/
-class BOTAN_DLL Mutex
+class Mutex
{
public:
virtual void lock() = 0;
@@ -26,7 +26,7 @@ class BOTAN_DLL Mutex
/*
* Mutex Factory
*/
-class BOTAN_DLL Mutex_Factory
+class Mutex_Factory
{
public:
virtual Mutex* make() = 0;
@@ -36,7 +36,7 @@ class BOTAN_DLL Mutex_Factory
/*
* Mutex Holding Class
*/
-class BOTAN_DLL Mutex_Holder
+class Mutex_Holder
{
public:
Mutex_Holder(Mutex* m) : mux(m)