From afbfe42e63cdba1a18c292d7eb4875009b0f19c0 Mon Sep 17 00:00:00 2001 From: Tamás Zolnai Date: Sat, 10 Nov 2018 17:34:31 +0100 Subject: clang-tidy: (WIP) bugprone-too-small-loop-variable findings 2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I1ddf3fe0e5fad265ae14712a23469b684253079d Reviewed-on: https://gerrit.libreoffice.org/63241 Tested-by: Jenkins Reviewed-by: Tamás Zolnai --- sal/qa/rtl/strings/test_oustring_convert.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sal/qa') diff --git a/sal/qa/rtl/strings/test_oustring_convert.cxx b/sal/qa/rtl/strings/test_oustring_convert.cxx index cbf32ec13d52..20d3a9221c79 100644 --- a/sal/qa/rtl/strings/test_oustring_convert.cxx +++ b/sal/qa/rtl/strings/test_oustring_convert.cxx @@ -170,7 +170,7 @@ void test::oustring::Convert::convertToString() OUSTRING_TO_OSTRING_CVTFLAGS, "A?B", "A?B" } }; - for (unsigned int i = 0; i < SAL_N_ELEMENTS(aTests); ++i) + for (size_t i = 0; i < SAL_N_ELEMENTS(aTests); ++i) testConvertToString(aTests[i]); } -- cgit