Skip to content
  • Erik de Castro Lopo's avatar
    bitmath.h: MSVS unsigned fix · f60a8ccc
    Erik de Castro Lopo authored
    The orignal code had `unsigned long` inside `#ifdef MSVC`. It was then changed
    to `uint64_t` which was incorrect because on Windows `sizze long == 4`.
    Change it now to `uint32_t` which is always correct regardless of OS, compiler
    or architecture.
    f60a8ccc