Kaydet (Commit) 48cb5c72 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Improved loplugin:redundantcast (const-qualified typedefs): svl

Change-Id: Ife1db81f772ecf3bb713952be276ff8a2fd318a9
Reviewed-on: https://gerrit.libreoffice.org/56716
Tested-by: Jenkins
Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst 4da29bcc
......@@ -397,9 +397,9 @@ void Test::testFindFirstURLInText() {
buf.append("\" -> ");
buf.append(tests[i].result == nullptr ? "none" : tests[i].result);
buf.append(" (");
buf.append(static_cast< sal_Int32 >(tests[i].begin));
buf.append(tests[i].begin);
buf.append(", ");
buf.append(static_cast< sal_Int32 >(tests[i].end));
buf.append(tests[i].end);
buf.append(')');
buf.append(" != ");
buf.append(OUStringToOString(result, RTL_TEXTENCODING_UTF8));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment