~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_bitmap.h

Removed/replaced DBUG symbols and standardized TRUE/FALSE

Show diffs side-by-side

added added

removed removed

Lines of Context:
147
147
  {
148
148
    if (sizeof(buffer) >= 8)
149
149
      return uint8korr(buffer);
150
 
    DBUG_ASSERT(sizeof(buffer) >= 4);
 
150
    assert(sizeof(buffer) >= 4);
151
151
    return (ulonglong) uint4korr(buffer);
152
152
  }
153
153
};