Skip to content
Snippets Groups Projects
  1. Sep 04, 2020
  2. Aug 18, 2020
  3. Aug 10, 2020
  4. Aug 06, 2020
  5. Aug 05, 2020
  6. Jul 30, 2020
  7. Jul 28, 2020
  8. Jul 21, 2020
    • Nicky Dasmijn's avatar
      Remove redundant LL_EXSTAT_ from enums. · fba9abbb
      Nicky Dasmijn authored
      fba9abbb
    • Nicky Dasmijn's avatar
      LLExtStat had been a S32, this wasn't right, as some of the constants lead to... · acaa2723
      Nicky Dasmijn authored
      LLExtStat had been a S32, this wasn't right, as some of the constants lead to integer overflow: const LLExtStat LL_EXSTAT_RES_RESULT = 2L<<30; const LLExtStat LL_EXSTAT_VFS_RESULT = 3L<<30; This shifts into the sign bit and clang gets (rightfully) upset about this.
      
      LLExtStatus needs to be at least of type U32 to remedy this problem, but
      while at it it makes sense to turn it into what it is: An enum. Turning
      it into a class enum has the added benefit we get type safety for mostly
      free.
      Which incidentally turned up a problem right away:
      A call to removeAndCallbackPendingDownloads had status and extstatus
      reversed and thus was wrong.
      acaa2723
  9. Jul 20, 2020
  10. Jul 14, 2020
  11. Jul 08, 2020
  12. Jul 06, 2020
  13. Jul 02, 2020
  14. Jul 01, 2020
  15. Jun 30, 2020
  16. Jun 29, 2020
  17. Jun 23, 2020
Loading