~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/uniques.cc

Merged Padraig.

Show diffs side-by-side

added added

removed removed

Lines of Context:
400
400
  public:
401
401
  buffpek_compare_functor(qsort_cmp2 in_key_compare, void *in_compare_arg)
402
402
    : key_compare(in_key_compare), key_compare_arg(in_compare_arg) { }
403
 
  inline bool operator()(BUFFPEK *i, BUFFPEK *j)
 
403
  inline bool operator()(const BUFFPEK *i, const BUFFPEK *j)
404
404
  {
405
405
    return key_compare(key_compare_arg,
406
406
                    i->key, j->key);