~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/ref.h

Merge Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
  enum Type type() const                { return REF_ITEM; }
60
60
  bool eq(const Item *item, bool binary_cmp) const
61
61
  {
62
 
    Item *it= static_cast<Item *>(((Item *) item)->real_item());
 
62
    const Item *it= item->real_item();
63
63
    return ref && (*ref)->eq(it, binary_cmp);
64
64
  }
65
65
  double val_real();