Skip to content
Permalink
Browse files
Do not use C++11 before MariaDB 10.4
This fixes up 3d9b350
  • Loading branch information
dr-m committed Oct 14, 2022
1 parent 3d9b350 commit 78030b6
Showing 1 changed file with 2 additions and 2 deletions.
@@ -475,7 +475,7 @@ void ut_list_validate(const List& list, Functor& functor)
ut_list_map(list, functor);
#ifdef UNIV_DEBUG
/* Validate the list backwards. */
auto count = list.count;
ulint count = list.count;

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

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

0 comments on commit 78030b6

Please sign in to comment.