~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/data_ref.h

  • Committer: Mark Atwood
  • Date: 2011-10-19 00:10:47 UTC
  • mfrom: (2440.2.13 rf)
  • Revision ID: me@mark.atwood.name-20111019001047-atj0u8gedphon1tb
mergeĀ lp:~olafvdspek/drizzle/refactor5

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)