Kouhei Sutou
null+****@clear*****
Thu Aug 17 10:27:42 JST 2017
Kouhei Sutou 2017-08-17 10:27:42 +0900 (Thu, 17 Aug 2017) New Revision: c9380784f1cbb2a44c03a565a1ad8e46247531a0 https://github.com/mroonga/mroonga/commit/c9380784f1cbb2a44c03a565a1ad8e46247531a0 Message: Fix build error Modified files: ha_mroonga.cpp lib/mrn_smart_bitmap.cpp Modified: ha_mroonga.cpp (+1 -1) =================================================================== --- ha_mroonga.cpp 2017-08-17 10:20:22 +0900 (e5628229) +++ ha_mroonga.cpp 2017-08-17 10:27:42 +0900 (ece90665) @@ -15169,7 +15169,7 @@ bool ha_mroonga::storage_inplace_alter_table_add_column( if (error) { break; } - mrn::SmartBitmap generated_column_bitmap(&generated_column_bitmap); + mrn::SmartBitmap smart_generated_column_bitmap(&generated_column_bitmap); bitmap_set_bit(&generated_column_bitmap, field->field_index); # endif Modified: lib/mrn_smart_bitmap.cpp (+3 -3) =================================================================== --- lib/mrn_smart_bitmap.cpp 2017-08-17 10:20:22 +0900 (1a5c17fc) +++ lib/mrn_smart_bitmap.cpp 2017-08-17 10:27:42 +0900 (9dc91ff2) @@ -26,16 +26,16 @@ namespace mrn { SmartBitmap::~SmartBitmap() { if (bitmap_) { - my_bitmap_free(bitmap_); + bitmap_free(bitmap_); } } MY_BITMAP *SmartBitmap::get() { - return bitamp_; + return bitmap_; } MY_BITMAP *SmartBitmap::release() { - MY_BITMAP *bitmap = ; + MY_BITMAP *bitmap = bitmap_; bitmap_ = NULL; return bitmap; } -------------- next part -------------- HTML����������������������������... ダウンロード