~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/hex_string.cc

Removed global.h. Fixed all the headers.
Also fixed headers to allow for some out of tree builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
 
28
28
using namespace std;
29
29
 
 
30
static char _dig_vec_lower[] =
 
31
  "0123456789abcdefghijklmnopqrstuvwxyz";
 
32
 
30
33
inline uint32_t char_val(char X)
31
34
{
32
35
  return (uint32_t) (X >= '0' && X <= '9' ? X-'0' :