~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_array.h

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
Remove uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
{
31
31
  enum {alloc_increment = 16};
32
32
  Elem **buffer;
33
 
  uint n_elements, max_element;
 
33
  uint32_t n_elements, max_element;
34
34
public:
35
 
  Array(MEM_ROOT *mem_root, uint prealloc=16)
 
35
  Array(MEM_ROOT *mem_root, uint32_t prealloc=16)
36
36
  {
37
37
    buffer= (Elem**)alloc_root(mem_root, prealloc * sizeof(Elem**));
38
38
    max_element = buffer? prealloc : 0;