~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/sql_bitmap.h

  • Committer: Stewart Smith
  • Date: 2008-06-30 05:33:25 UTC
  • mfrom: (12.2.8 drizzle)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: stewart@flamingspork.com-20080630053325-mwrv6bjaufcpvj8n
merge my work

Show diffs side-by-side

added added

removed removed

Lines of Context:
157
157
  ulonglong map;
158
158
public:
159
159
  Bitmap<64>() { map= 0; }
160
 
#if defined(__NETWARE__) || defined(__MWERKS__)
161
 
  /*
162
 
    Metwork compiler gives error on Bitmap<64>
163
 
    Changed to Bitmap, since in this case also it will proper construct
164
 
    this class
165
 
  */
166
 
  explicit Bitmap(uint prefix_to_set) { set_prefix(prefix_to_set); }
167
 
#else
168
160
  explicit Bitmap<64>(uint prefix_to_set) { set_prefix(prefix_to_set); }
169
 
#endif
170
161
  void init() { }
171
162
  void init(uint prefix_to_set) { set_prefix(prefix_to_set); }
172
163
  uint length() const { return 64; }