summaryrefslogtreecommitdiff
path: root/sql/sql_list.h
diff options
context:
space:
mode:
authorunknown <serg@serg.mylan>2004-02-19 13:41:32 +0100
committerunknown <serg@serg.mylan>2004-02-19 13:41:32 +0100
commitf3254df072385140ef82a998ee61715c5a92b4b3 (patch)
treeab7d3a836dda3f5b195f9caad1f2eb89a7118093 /sql/sql_list.h
parent4ca357b3f7c449cfcc05fec3f9a6ad32fd13eeb9 (diff)
downloadmariadb-git-f3254df072385140ef82a998ee61715c5a92b4b3.tar.gz
qnx qcc compatibility fix
Diffstat (limited to 'sql/sql_list.h')
-rw-r--r--sql/sql_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_list.h b/sql/sql_list.h
index c7faef88358..0bbc0f87944 100644
--- a/sql/sql_list.h
+++ b/sql/sql_list.h
@@ -286,7 +286,7 @@ protected:
inline T** ref(void) { return (T**) 0; }
public:
- List_iterator_fast(List<T> &a) : base_list_iterator(a) {}
+ inline List_iterator_fast(List<T> &a) : base_list_iterator(a) {}
inline T* operator++(int) { return (T*) base_list_iterator::next_fast(); }
inline void rewind(void) { base_list_iterator::rewind(); }
void sublist(List<T> &list_arg, uint el_arg)