diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-12-14 09:20:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-12-14 09:37:14 +0100 |
commit | 28b86ca7b704d2789cad69f7516203434202c082 (patch) | |
tree | 81b2b2c948c53f25f54597118c522debb0234927 /configmgr/source/update.cxx | |
parent | ce1f52d69a2dfb0d34f41b7c9538775588db079c (diff) |
Replaced remaining OSL_ASSERT in configmgr.
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(); } |