~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_bitmap.h

  • Committer: Brian Aker
  • Date: 2009-04-06 23:21:25 UTC
  • mto: This revision was merged to the branch mainline in revision 976.
  • Revision ID: brian@gaz-20090406232125-pfh5thw54drisx0h
LCOV cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
76
76
  bool is_clear_all() const { return bitmap_is_clear_all(&map); }
77
77
  bool is_set_all() const { return bitmap_is_set_all(&map); }
78
78
  bool is_subset(const Bitmap& map2) const { return bitmap_is_subset(&map, &map2.map); }
79
 
  bool is_overlapping(const Bitmap& map2) const { return bitmap_is_overlapping(&map, &map2.map); }
80
79
  bool operator==(const Bitmap& map2) const { return bitmap_cmp(&map, &map2.map); }
81
80
  bool operator!=(const Bitmap& map2) const { return !bitmap_cmp(&map, &map2.map); }
82
81
  Bitmap operator&=(uint32_t n)