diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-21 11:03:55 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-21 11:03:55 +0200 |
commit | e1af7f0c438bc242e4562aa0286c99787b5ad544 (patch) | |
tree | 29c7faa3556f33baa7eae5cd0aca3946afb8a560 /cppuhelper | |
parent | 8762aa986dbca42e61cc8fb1b2c1d2ca66bcfcbe (diff) |
clang-tidy modernize-loop-convert in c*
Change-Id: I77d2548f8be97792660761e6156cd24734a95aaf
Diffstat (limited to 'cppuhelper')
-rw-r--r-- | cppuhelper/source/bootstrap.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cppuhelper/source/bootstrap.cxx b/cppuhelper/source/bootstrap.cxx index fe98cfc4205e..ebc913e5a330 100644 --- a/cppuhelper/source/bootstrap.cxx +++ b/cppuhelper/source/bootstrap.cxx @@ -144,8 +144,8 @@ Reference< XComponentContext > SAL_CALL bootstrap() throw BootstrapException( "random pool error!" ); rtl_random_destroyPool( hPool ); ::rtl::OUStringBuffer buf("uno"); - for ( sal_uInt32 i = 0; i < ARLEN( bytes ); ++i ) - buf.append( static_cast< sal_Int32 >( bytes[ i ] ) ); + for (unsigned char byte : bytes) + buf.append( static_cast< sal_Int32 >( byte ) ); OUString sPipeName( buf.makeStringAndClear() ); // arguments |