~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/dtoa.cc

  • Committer: Monty Taylor
  • Date: 2008-11-07 00:37:57 UTC
  • mfrom: (575.3.1 c++ize)
  • mto: This revision was merged to the branch mainline in revision 579.
  • Revision ID: monty@inaugust.com-20081107003757-ahi7yycs9t23sima
Merged from c++ize.

Show diffs side-by-side

added added

removed removed

Lines of Context:
703
703
    alloc->free+= aligned_size;
704
704
  }
705
705
  else
706
 
    rv= malloc(i);
 
706
    rv= (char *)malloc(i);
707
707
  return rv;
708
708
}
709
709
 
2254
2254
            goto bump_up;
2255
2255
          else if (dval(d) < 0.5 - dval(eps))
2256
2256
          {
2257
 
            while (*--s == '0');
 
2257
            while (*--s == '0') {}
2258
2258
            s++;
2259
2259
            goto ret1;
2260
2260
          }
2529
2529
  }
2530
2530
  else
2531
2531
  {
2532
 
    while (*--s == '0');
 
2532
    while (*--s == '0') {}
2533
2533
    s++;
2534
2534
  }
2535
2535
ret: