~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/my_decimal.h

Merging trunk changes from over weekend.

Show diffs side-by-side

added added

removed removed

Lines of Context:
278
278
 
279
279
 
280
280
inline
281
 
int my_decimal2double(uint mask, const my_decimal *d, double *result)
 
281
int my_decimal2double(uint mask __attribute__((__unused__)), 
 
282
                      const my_decimal *d, double *result)
282
283
{
283
284
  /* No need to call check_result as this will always succeed */
284
285
  return decimal2double((decimal_t*) d, result);