~drizzle-pbxt/drizzle/drizzle-pbxt-2

« back to all changes in this revision

Viewing changes to mysys/my_bitmap.h

  • Committer: Vladimir Kolesnikov
  • Date: 2009-11-12 11:25:43 UTC
  • mfrom: (1038.2.3 drizzle-pbxt-pre-merge)
  • Revision ID: vladimir@primebase.org-20091112112543-7ygqen4ktpexcjgj
merge from work breanch

Show diffs side-by-side

added added

removed removed

Lines of Context:
280
280
    return last_word_ptr;
281
281
  }
282
282
 
 
283
  /**
 
284
 *    * @return the last word mask for this bitmap
 
285
 *       */
 
286
  my_bitmap_map getLastWordMask() const
 
287
  {
 
288
    return last_word_mask;
 
289
  }
 
290
 
283
291
  void addMaskToLastWord() const
284
292
  {
285
293
    *last_word_ptr|= last_word_mask;