Commit 7b3cd08e authored by unknown's avatar unknown
Browse files

sql_bitmap.h:

  corrected compile error on some platforms


sql/sql_bitmap.h:
  corrected compile error on some platforms
parent 01381046
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ template <uint default_width> class Bitmap
  void intersect(ulonglong map2buff)
  {
    MY_BITMAP map2;
    bitmap_init(&map2, (uchar *)&map2buff, sizeof(ulonglong)*8, 0);
    bitmap_init(&map2, (uint32 *)&map2buff, sizeof(ulonglong)*8, 0);
    bitmap_intersect(&map, &map2);
  }
  void subtract(Bitmap& map2) { bitmap_subtract(&map, &map2.map); }