flamewing / mdcomp

Assorted compression formats for the Sega Mega Drive
Other
44 stars 4 forks source link

Missing #include in lzss.h #4

Closed Clownacy closed 6 years ago

Clownacy commented 6 years ago

Now that MSVC actually supports modern C++ (supposedly), I tried to see if this would compile in the shell extension without modification, but I got an error in lzss.h about std:min and std:max not being defined. Apparently min and max are defined in \<algorithm>, which isn't included.

flamewing commented 6 years ago

I think GCC and clang may include it in one of the other headers, and pick them up transitively. Anyway, fixed in master.