~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item_strfunc.cc

  • Committer: Brian Aker
  • Date: 2008-10-08 03:24:53 UTC
  • Revision ID: brian@gir.tangent.org-20081008032453-ee0n2ukp869ykmqj
Fix call by prepending std::

Show diffs side-by-side

added added

removed removed

Lines of Context:
1407
1407
    nr= my_double_round(nr, (int64_t) dec, false, false);
1408
1408
    /* Here default_charset() is right as this is not an automatic conversion */
1409
1409
    str->set_real(nr, dec, default_charset());
1410
 
    if (isnan(nr))
 
1410
    if (std::isnan(nr))
1411
1411
      return str;
1412
1412
    str_length=str->length();
1413
1413
    if (nr < 0)