Closed jhasse closed 11 years ago
MinGW doesn't include the non-standard data type uint, see http://sourceforge.net/p/mingw/bugs/1381/
I replaced uint with unsigned and also deleted trailing spaces in the affected files.
I've manually updated the code to replace uint with uint32_t so that we're consistent with the rest of the code. Will that work? I'll fix the spaces in another commit. Thanks!
Yes, uint32_t also works :)
MinGW doesn't include the non-standard data type uint, see http://sourceforge.net/p/mingw/bugs/1381/
I replaced uint with unsigned and also deleted trailing spaces in the affected files.