~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/log_event.cc

  • Committer: Toru Maesaka
  • Date: 2008-12-11 07:45:27 UTC
  • mto: (670.1.11 devel)
  • mto: This revision was merged to the branch mainline in revision 672.
  • Revision ID: dev@torum.net-20081211074527-yu0cpi5pumqifgg5
Added namespacing for std to .cc files that needed it

Show diffs side-by-side

added added

removed removed

Lines of Context:
3065
3065
 
3066
3066
void Slave_log_event::pack_info(Protocol *protocol)
3067
3067
{
3068
 
  std::ostringstream stream;
 
3068
  ostringstream stream;
3069
3069
  stream << "host=" << master_host << ",port=" << master_port;
3070
3070
  stream << ",log=" << master_log << ",pos=" << master_pos;
3071
3071