diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2020-05-27 09:51:46 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2020-05-27 09:51:46 +0300 |
commit | 67496281eaa11098ad4482c2bb5aa5976b4f5cbb (patch) | |
tree | 9bc0846939718b2c7f66bb19685d9ee4e0ab0b34 /include | |
parent | 18d8f06f31cbe3913e1c80c0c5120f23e036bd3e (diff) | |
download | mariadb-git-67496281eaa11098ad4482c2bb5aa5976b4f5cbb.tar.gz |
Fix the RelWithDebInfo build
The build was broken in the parent
commit 18d8f06f31cbe3913e1c80c0c5120f23e036bd3e.
Diffstat (limited to 'include')
-rw-r--r-- | include/ilist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ilist.h b/include/ilist.h index a94f878f49b..ae87b79d54e 100644 --- a/include/ilist.h +++ b/include/ilist.h @@ -25,8 +25,8 @@ template <class Tag= void> struct ilist_node { ilist_node() - : #ifndef DBUG_OFF + : next(NULL), prev(NULL) #endif { |