diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-05-12 14:37:32 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-05-12 14:37:32 +0200 |
commit | 11b3262dd116118d46b0fbfea5f4dcea1de755c9 (patch) | |
tree | 1e20ba2f4fd420500093245e376a012f3453768f /xmlscript | |
parent | f3e18ad14e41fcda64f835ac1beb187a218db3d7 (diff) |
loplugin:nullptr
Change-Id: I2eb28f3408967d9de4143f6b9212056ac8614d1c
Diffstat (limited to 'xmlscript')
-rw-r--r-- | xmlscript/source/xml_helper/xml_impctx.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlscript/source/xml_helper/xml_impctx.cxx b/xmlscript/source/xml_helper/xml_impctx.cxx index 493c333d279a..95f60fa06bd3 100644 --- a/xmlscript/source/xml_helper/xml_impctx.cxx +++ b/xmlscript/source/xml_helper/xml_impctx.cxx @@ -207,7 +207,7 @@ DocumentHandlerImpl::~DocumentHandlerImpl() throw () { delete m_pMutex; #if OSL_DEBUG_LEVEL == 0 - m_pMutex = 0; + m_pMutex = nullptr; #endif } } |