Displaying 1 result from an estimated 1 matches for "flint_totlen_t".
2005 Aug 05
2
uint4 in quartz/flint
...comment
about a double implementation in the following:
----------------------------------------------------------------------
/** An integer type which can store the sum of the lengths of the
documents
* in the database.
*
* FIXME - change this to a double?
*/
typedef unsigned long long int flint_totlen_t;
----------------------------------------------------------------------
unsigned long long is dead right on both major data type sizes in use
at the moment. While double certainly takes up 64bits, I don't see why
an integer isn't the right choice. The comment comes from:
-----------------...