From 132e8ca43e4f28c2b4b9842ce2b977e0f25b0730 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 2 Jun 2015 11:28:47 +0200 Subject: loplugin:cstylecast: deal with those that are (technically) const_cast Change-Id: Ic50468d68c92779a589894963ab4099eefb8adf4 --- unoxml/source/dom/node.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unoxml/source') 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(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(), -- cgit