summaryrefslogtreecommitdiffstats
path: root/configmgr/source/update.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2011-12-14 09:20:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2011-12-14 09:37:14 +0100
commit28b86ca7b704d2789cad69f7516203434202c082 (patch)
tree81b2b2c948c53f25f54597118c522debb0234927 /configmgr/source/update.cxx
parentPorted configmgr to gbuild. (diff)
downloadcore-28b86ca7b704d2789cad69f7516203434202c082.tar.gz
core-28b86ca7b704d2789cad69f7516203434202c082.zip
Replaced remaining OSL_ASSERT in configmgr.
Diffstat (limited to 'configmgr/source/update.cxx')
-rw-r--r--configmgr/source/update.cxx3
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();
}