mldbai / mldb

MLDB is the Machine Learning Database
http://mldb.ai
Apache License 2.0
661 stars 102 forks source link

size_t <-> uint64_t confusion #930

Closed jeremybarnes closed 2 years ago

jeremybarnes commented 2 years ago

MLDB has been developed on platforms where size_t, uint64_t and unsigned long long are the same thing. This is not the case on OSX. This patch series fixes the confusion, and modifies the internal MLDB type system to call integral types "i64" and "u64" instead of the C++ names like "long long" which can vary between platforms.

One more step along the way to OSX support.