diff options
author | unknown <gkodinov/kgeorge@macbook.gmz> | 2007-12-14 15:21:37 +0200 |
---|---|---|
committer | unknown <gkodinov/kgeorge@macbook.gmz> | 2007-12-14 15:21:37 +0200 |
commit | 763c1132c3a2b6352cd199ad17e1a121672c5740 (patch) | |
tree | 6682c1b590553e4556b970ac5bc9edec08ea1241 /storage/heap/ha_heap.cc | |
parent | 0cc269da52f939ffc6a6272370d113aac9ab5369 (diff) | |
download | mariadb-git-763c1132c3a2b6352cd199ad17e1a121672c5740.tar.gz |
Bug #31326: No compile check of order of initializations
fixed -Wreorder warnings
BUILD/SETUP.sh:
Bug #31326: enabled the -Wreorder warnings
sql/rpl_mi.cc:
Bug #31326: fixed -Wreorder warnings
storage/heap/ha_heap.cc:
Bug #31326: fixed -Wreorder warnings
storage/ndb/src/kernel/blocks/backup/Backup.hpp:
Bug #31326: fixed -Wreorder warnings
storage/ndb/src/kernel/blocks/pgman.cpp:
Bug #31326: fixed -Wreorder warnings
Diffstat (limited to 'storage/heap/ha_heap.cc')
-rw-r--r-- | storage/heap/ha_heap.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/heap/ha_heap.cc b/storage/heap/ha_heap.cc index 601d4612dda..be2914adac4 100644 --- a/storage/heap/ha_heap.cc +++ b/storage/heap/ha_heap.cc @@ -61,8 +61,8 @@ static handler *heap_create_handler(handlerton *hton, *****************************************************************************/ ha_heap::ha_heap(handlerton *hton, TABLE_SHARE *table_arg) - :handler(hton, table_arg), file(0), records_changed(0), internal_table(0), - key_stat_version(0) + :handler(hton, table_arg), file(0), records_changed(0), key_stat_version(0), + internal_table(0) {} |