diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-10-24 12:27:16 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-10-24 12:56:22 +0200 |
commit | c31d7b012f953f4a677fd5a576c0aa8379897879 (patch) | |
tree | 770bd3fb4a63005c03fcb95178abc316d52eeac3 /comphelper/inc | |
parent | 084d665b61ac79ed4b81fffd05acce28b020d8b3 (diff) |
Some warning cleanup (found with trunk Clang).
Diffstat (limited to 'comphelper/inc')
-rw-r--r-- | comphelper/inc/comphelper/accessiblecontexthelper.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/comphelper/inc/comphelper/accessiblecontexthelper.hxx b/comphelper/inc/comphelper/accessiblecontexthelper.hxx index b80805d51776..3f02666508f7 100644 --- a/comphelper/inc/comphelper/accessiblecontexthelper.hxx +++ b/comphelper/inc/comphelper/accessiblecontexthelper.hxx @@ -52,9 +52,10 @@ namespace comphelper /** abstract interface for implementing a mutex */ - class IMutex + class COMPHELPER_DLLPUBLIC IMutex { public: + virtual ~IMutex(); virtual void acquire() = 0; virtual void release() = 0; }; |