bcgsc / btl_bloomfilter

The BTL C/C++ Common bloom filters for bioinformatics projects, as well as any APIs created for other programming languages.
GNU General Public License v3.0
18 stars 4 forks source link

BloomFilter.hpp: change uint64_t to size_t #30

Closed jwcodee closed 5 years ago

jwcodee commented 5 years ago

This fixes the macOS compilation problem with abyss-bloom. The 2.1.5 bloomfilter that ben was using was also using size_t instead of uint64_t.

jwcodee commented 5 years ago

so I have two options here. Change uint64_t and size_t in the BloomFilter.hpp which is what I have done or change affected instances of size_t to uint64_t in abyss

jwcodee commented 5 years ago

Actually I think it is better to change the affected ones to uint64_t so there is no ambiguity and we are not leaving it for the compile to decide so I'm closing this pull request