~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_bit.h

Removed ushort references.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
                         _my_bits_nbits[(unsigned char) (v2 >> 24)]);
37
37
}
38
38
 
39
 
static inline uint32_t my_count_bits_ushort(ushort v)
 
39
static inline uint32_t my_count_bits_uint16(uint16_t v)
40
40
{
41
41
  return _my_bits_nbits[v];
42
42
}