~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field.h

  • Committer: Lee Bieber
  • Date: 2011-02-14 19:50:07 UTC
  • mfrom: (2167.1.3 build)
  • Revision ID: kalebral@gmail.com-20110214195007-om9fjrqy5ziqwrlw
Merge Andrew - 718224: Minor changes to migration docs needed 
Merge Olaf - updating old style casts
Merge Olaf - drizzletest re-factoring

Show diffs side-by-side

added added

removed removed

Lines of Context:
471
471
  int64_t val_int_internal(const unsigned char *new_ptr)
472
472
  {
473
473
    unsigned char *old_ptr= ptr;
474
 
    int64_t return_value;
475
474
    ptr= const_cast<unsigned char*>(new_ptr);
476
 
    return_value= val_int();
 
475
    int64_t return_value= val_int();
477
476
    ptr= old_ptr;
478
477
    return return_value;
479
478
  }