Skip to content

Commit 78030b6

Browse files
committed
Do not use C++11 before MariaDB 10.4
This fixes up 3d9b350
1 parent 3d9b350 commit 78030b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

storage/innobase/include/ut0lst.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ void ut_list_validate(const List& list, Functor& functor)
475475
ut_list_map(list, functor);
476476
#ifdef UNIV_DEBUG
477477
/* Validate the list backwards. */
478-
auto count = list.count;
478+
ulint count = list.count;
479479

480480
for (typename List::elem_type* elem = list.end;
481481
elem != 0;
@@ -495,7 +495,7 @@ inline void ut_list_validate(const List& list, const Functor& functor)
495495
ut_list_map(list, functor);
496496
#ifdef UNIV_DEBUG
497497
/* Validate the list backwards. */
498-
auto count = list.count;
498+
ulint count = list.count;
499499

500500
for (typename List::elem_type* elem = list.end;
501501
elem != 0;

0 commit comments

Comments
 (0)