--- [EMAIL PROTECTED] wrote:
> "Ian Frosst" <[EMAIL PROTECTED]> wrote:
> >  Looking at the code, there are pointer to int truncations
> > everywhere,
> 
> Where, specifically, are you seeing pointer to int truncations
> in the SQLite code base?

I haven't seen any. I suspect there aren't any.

As for his comment on the lack of a 64 bit datatype, he did not
look very hard...

#ifdef SQLITE_INT64_TYPE
  typedef SQLITE_INT64_TYPE sqlite_int64;
  typedef unsigned SQLITE_INT64_TYPE sqlite_uint64;
#elif defined(_MSC_VER) || defined(__BORLANDC__)
  typedef __int64 sqlite_int64;
  typedef unsigned __int64 sqlite_uint64;
#else
  typedef long long int sqlite_int64;
  typedef unsigned long long int sqlite_uint64;
#endif



 
____________________________________________________________________________________
Never miss an email again!
Yahoo! Toolbar alerts you the instant new Mail arrives.
http://tools.search.yahoo.com/toolbar/features/mail/

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to