~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/diagnostics_area.h

  • Committer: Olaf van der Spek
  • Date: 2011-06-29 13:09:10 UTC
  • mto: This revision was merged to the branch mainline in revision 2362.
  • Revision ID: olafvdspek@gmail.com-20110629130910-5dj61b6rfcv0ssv7
Use std::list for Diagnostics_area::m_warn_list

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
  uint64_t last_insert_id() const;
79
79
  uint32_t total_warn_count() const;
80
80
 
81
 
  List<DRIZZLE_ERROR> m_warn_list;
 
81
  std::list<DRIZZLE_ERROR*> m_warn_list;
82
82
 
83
83
  Diagnostics_area() { reset_diagnostics_area(); }
84
84