~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/uniques.cc

  • Committer: Monty Taylor
  • Date: 2009-12-22 09:42:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1253.
  • Revision ID: mordred@inaugust.com-20091222094205-0tgdtn3zxn2t5xz5
Removed some more evil.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
using namespace std;
48
48
 
49
49
 
50
 
int unique_write_to_file(unsigned char* key, element_count,
 
50
int unique_write_to_file(unsigned char* key, uint32_t,
51
51
                         Unique *unique)
52
52
{
53
53
  /*
60
60
}
61
61
 
62
62
int unique_write_to_ptrs(unsigned char* key,
63
 
                         element_count, Unique *unique)
 
63
                         uint32_t, Unique *unique)
64
64
{
65
65
  memcpy(unique->record_pointers, key, unique->size);
66
66
  unique->record_pointers+=unique->size;