diff options
Diffstat (limited to 'configmgr/source/update.cxx')
-rw-r--r-- | configmgr/source/update.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configmgr/source/update.cxx b/configmgr/source/update.cxx index 5022c07d579e..fb17066d73dd 100644 --- a/configmgr/source/update.cxx +++ b/configmgr/source/update.cxx @@ -28,6 +28,7 @@ #include "sal/config.h" +#include <cassert> #include <set> #include "boost/noncopyable.hpp" @@ -75,7 +76,7 @@ public: Service(css::uno::Reference< css::uno::XComponentContext > const context): context_(context) { - OSL_ASSERT(context.is()); + assert(context.is()); lock_ = lock(); } |