fhanau / Efficient-Compression-Tool

Fast and effective C++ file optimizer
Apache License 2.0
596 stars 41 forks source link

limits.h #23

Closed lynxzp closed 7 years ago

lynxzp commented 7 years ago
main.cpp:391:20: error: ‘UINT_MAX’ was not declared in this scope
             if(f > UINT_MAX){

Maybe need to include "limits.h"? I don't know how it compiling without it.

P.S. ECT is great!

fhanau commented 7 years ago

It does work without it with clang on Mac OS, but I still added the header. Thank you.