~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/identifier/schema.cc

  • Committer: Olaf van der Spek
  • Date: 2011-03-23 23:44:48 UTC
  • mto: This revision was merged to the branch mainline in revision 2251.
  • Revision ID: olafvdspek@gmail.com-20110323234448-k7f1244962p4s2op
Remove const_reference and reference from identifier::Schema

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
  return boost::iequals(arg, db);
90
90
}
91
91
 
92
 
bool Schema::compare(Schema::const_reference arg) const
 
92
bool Schema::compare(const Schema& arg) const
93
93
{
94
94
  return boost::iequals(arg.getSchemaName(), db);
95
95
}