Skip to content
Permalink
Browse files
MDEV-22924 fixup: Replace C++11 auto
  • Loading branch information
dr-m committed Sep 9, 2020
1 parent d44c0f4 commit 040ae4c
Showing 1 changed file with 1 addition and 1 deletion.
@@ -3323,7 +3323,7 @@ class Row_sel_get_clust_rec_for_mysql
ut_ad(vers_offs == rec_get_offsets(cached_old_vers, index, vers_offs, true,
index->db_trx_id(), &heap));
ut_ad(!heap);
for (auto n= index->db_trx_id(); n--; )
for (unsigned n= index->db_trx_id(); n--; )
{
const dict_col_t *col= dict_index_get_nth_col(index, n);
ulint len1, len2;

0 comments on commit 040ae4c

Please sign in to comment.