~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/m_string.h

  • Committer: Monty Taylor
  • Date: 2008-09-23 00:09:32 UTC
  • mto: This revision was merged to the branch mainline in revision 417.
  • Revision ID: monty@inaugust.com-20080923000932-5sao8gsxi3l9lt63
Removed C++ includes and std namespace from global.h.

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
  (DBL_DIG + 2) significant digits + sign + "." + ("e-NNN" or
137
137
  MAX_DECPT_FOR_F_FORMAT zeros for cases when |x|<1 and the 'f' format is used).
138
138
*/
139
 
#define MY_GCVT_MAX_FIELD_WIDTH (DBL_DIG + 4 + max(5, MAX_DECPT_FOR_F_FORMAT))
 
139
#define MY_GCVT_MAX_FIELD_WIDTH (DBL_DIG + 4 + cmax(5, MAX_DECPT_FOR_F_FORMAT))
140
140
  
141
141
 
142
142
extern char *llstr(int64_t value,char *buff);