~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/internal/dtoa.cc

  • Committer: Monty Taylor
  • Date: 2010-02-05 08:11:15 UTC
  • mfrom: (1283 build)
  • mto: (1273.13.43 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: mordred@inaugust.com-20100205081115-dr82nvrwv4lvw7sd
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
using namespace std;
49
49
 
 
50
namespace drizzled
 
51
{
 
52
namespace internal
 
53
{
 
54
 
50
55
/* Magic value returned by dtoa() to indicate overflow */
51
56
#define DTOA_OVERFLOW 9999
52
57
 
2468
2473
    *rve= s;
2469
2474
  return s0;
2470
2475
}
 
2476
 
 
2477
} /* namespace internal */
 
2478
} /* namespace drizzled */