1. 05 Nov, 2018 1 commit
  2. 04 Nov, 2018 8 commits
  3. 02 Nov, 2018 5 commits
  4. 01 Nov, 2018 3 commits
  5. 31 Oct, 2018 4 commits
  6. 30 Oct, 2018 5 commits
  7. 27 Oct, 2018 3 commits
  8. 26 Oct, 2018 3 commits
  9. 22 Oct, 2018 1 commit
  10. 09 Oct, 2018 1 commit
  11. 08 Oct, 2018 4 commits
  12. 07 Oct, 2018 2 commits
    • Luca Boccassi's avatar
      Merge pull request #3267 from glemercier/master · 501d0815
      Luca Boccassi authored
      Problem: Compilation with strict AARCH64 compilers is broken
      501d0815
    • Gregory Lemercier's avatar
      Fix build on arm64 architectures with some strict compilers · ffe62d33
      Gregory Lemercier authored
      This patch fixes an issue that occurs on 64-bit architetures under
      strict compiler rules. The code initially checked that the received
      size stored in 'uint64_t' was not bigger than the max value of a
      'size_t' variable, which is legitimate on 32-bit architectures where
      'size_t' variables are stored on 32 bits. On 64-bit architectures,
      this test no longer makes sense since 'uint64_t' and 'size_t' types
      have the same size. The issue is fixed by ignoring this portion
      of code when built for arm64.
      ffe62d33