1
0
mirror of synced 2024-11-12 01:00:46 +01:00

Possible fix for clang OSX compile.

This commit is contained in:
Jennifer Taylor 2021-05-19 20:01:32 +00:00
parent d6e04acde5
commit f8f32ef082

View File

@ -102,7 +102,7 @@ extern "C"
int compress(uint8_t *indata, unsigned int inlen, uint8_t *outdata, unsigned int outlen)
{
uint32_t key = 0;
std::unordered_map<uint32_t, std::list<unsigned int>> starts;
std::unordered_map<uint32_t, std::list<unsigned int> > starts;
bool eof = false;
unsigned int outloc = 0;
unsigned int inloc = 0;