Use Bro-style platform-independent integer types.

This commit is contained in:
Matthias Vallentin 2013-08-16 13:29:52 -07:00
parent f5655bd2fe
commit 516e044e34
6 changed files with 9 additions and 9 deletions

View file

@ -15,7 +15,7 @@ namespace probabilistic {
*/
class BitVector : public SerialObj {
public:
typedef uint64_t block_type;
typedef uint64 block_type;
typedef size_t size_type;
typedef bool const_reference;
@ -281,7 +281,7 @@ public:
*
* @return The hash.
*/
uint64_t Hash() const;
uint64 Hash() const;
/**
* Serializes the bit vector.