~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/data_ref.h

  • Committer: Olaf van der Spek
  • Date: 2011-10-18 11:48:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2443.
  • Revision ID: olafvdspek@gmail.com-20111018114844-yit26aam30a9h5ip
Use data_ref

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
 
108
108
inline std::ostream& operator<<(std::ostream& os, str_ref v)
109
109
{
110
 
  os.write(v.data(), v.size());
111
 
  return os;
 
110
  return os.write(v.data(), v.size());
112
111
}
113
112
 
114
113
inline std::string to_string(str_ref v)