YosysHQ / arachne-pnr

Place and route tool for FPGAs
MIT License
413 stars 72 forks source link

Support for 64-bit size_t offsets in bstream.hh #44

Closed milkowski closed 8 years ago

milkowski commented 8 years ago

On 64-bit systems the 'size_t' type is translated to 'unsigned long long', therefore there is need for additional overload of '>>' nad '<<' operators. This change was tested on mingw-w64-gcc-6.1.0 toolchain and works as expected.

cseed commented 8 years ago

Thanks!