Closed thrimbor closed 5 years ago
Fixes the definition of _PDCLIB_ptrdiff to be int instead of long, as it should be. Using the incorrect type breaks libc++ compilation because of mismatched types when instantiating a template in streambuf.
_PDCLIB_ptrdiff
int
long
streambuf
NevolutionX still builds fine with this change, runs like before. Probably no pointer subtraction going on there though. :thinking:
Fixes the definition of
_PDCLIB_ptrdiff
to beint
instead oflong
, as it should be. Using the incorrect type breaks libc++ compilation because of mismatched types when instantiating a template instreambuf
.