~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/util/convert.h

  • Committer: earney
  • Date: 2010-10-04 13:15:05 UTC
  • mto: (1813.1.3 build)
  • mto: This revision was merged to the branch mainline in revision 1814.
  • Revision ID: earney@earney.homedns.org-20101004131505-1mknj0drou0am13f
removed old commented out statements and uncommmeted out first occurance of stringstream in date.cc since it sets the precision.

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
template <class T>
33
33
std::string to_string(T t)
34
34
{
35
 
  //std::ostringstream o;
36
 
  //o << t;
37
 
  //return o.str();
38
35
  return boost::lexical_cast<std::string>(t);
39
36
}
40
37