diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-06-02 11:28:47 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-06-02 11:28:47 +0200 |
commit | 132e8ca43e4f28c2b4b9842ce2b977e0f25b0730 (patch) | |
tree | 4cef931aafcb7095be455265d8a06a6efcc2770f /unoxml/source | |
parent | 194c960ce9991418d72ab7ca181d412255d13020 (diff) |
loplugin:cstylecast: deal with those that are (technically) const_cast
Change-Id: Ic50468d68c92779a589894963ab4099eefb8adf4
Diffstat (limited to 'unoxml/source')
-rw-r--r-- | unoxml/source/dom/node.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unoxml/source/dom/node.cxx b/unoxml/source/dom/node.cxx index 4fbba7c6318d..4501b7ad26e7 100644 --- a/unoxml/source/dom/node.cxx +++ b/unoxml/source/dom/node.cxx @@ -116,7 +116,7 @@ namespace DOM strlen(reinterpret_cast<const char*>(pPrefix))); OSL_TRACE("getTokenWithPrefix(): prefix %s, name %s", - (const char*)pPrefix, (const char*)pName); + pPrefix, pName); Context::NamespaceVectorType::value_type::const_iterator aIter; if( (aIter=std::find_if(rContext.maNamespaces.back().begin(), |