~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/type/decimal.cc

  • Committer: Lee Bieber
  • Date: 2011-03-29 22:31:41 UTC
  • mfrom: (2257.1.3 build)
  • Revision ID: kalebral@gmail.com-20110329223141-yxc22h3l2he58sk0
Merge Andrew - 743842: Build failure using GCC 4.6
Merge Stewart - 738022: CachedDirectory silently fails to add entries if stat() fails
Merge Olaf - Common fwd: add copyright, add more declaration

Show diffs side-by-side

added added

removed removed

Lines of Context:
2082
2082
int decimal_intg(const decimal_t *from)
2083
2083
{
2084
2084
  int res;
2085
 
  dec1 *tmp_res;
2086
 
  tmp_res= remove_leading_zeroes(from, &res);
 
2085
  remove_leading_zeroes(from, &res);
2087
2086
  return res;
2088
2087
}
2089
2088