~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/definition/cache.cc

  • Committer: Olaf van der Spek
  • Date: 2011-07-05 18:15:41 UTC
  • mto: This revision was merged to the branch mainline in revision 2384.
  • Revision ID: olafvdspek@gmail.com-20110705181541-t5gdqo5ilg64jac6
Use boost::to_upper

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
 
66
66
  vector.reserve(definition::Cache::size());
67
67
 
68
 
  std::transform(cache.begin(),
69
 
                 cache.end(),
70
 
                 std::back_inserter(vector),
71
 
                 boost::bind(&Map::value_type::second, _1) );
 
68
  std::transform(cache.begin(), cache.end(), std::back_inserter(vector), boost::bind(&Map::value_type::second, _1));
72
69
  assert(vector.size() == cache.size());
73
70
}
74
71