Skip to content
Snippets Groups Projects
  1. Dec 18, 2024
  2. Dec 18, 2023
  3. Oct 19, 2023
  4. Dec 09, 2022
  5. Oct 26, 2022
  6. Jun 23, 2022
  7. Jun 10, 2022
  8. Nov 29, 2021
  9. Sep 08, 2021
  10. May 18, 2021
  11. Mar 17, 2021
  12. Jan 27, 2021
  13. Jun 07, 2020
  14. Jan 15, 2020
  15. Jan 10, 2020
  16. Oct 02, 2019
  17. Sep 25, 2019
  18. Aug 13, 2019
  19. Aug 09, 2019
  20. May 31, 2019
  21. Apr 29, 2019
  22. Jan 09, 2019
  23. Dec 21, 2018
  24. Dec 11, 2018
  25. Dec 03, 2018
  26. Nov 03, 2018
  27. Jul 02, 2018
  28. Jun 28, 2018
  29. Apr 27, 2018
  30. Apr 25, 2018
  31. Apr 23, 2018
  32. Mar 26, 2018
  33. Feb 21, 2018
  34. Jan 22, 2018
  35. Jan 09, 2018
  36. Jan 08, 2018
    • Mark OLESEN's avatar
      STYLE: use int instead of label for DynList template parameter · 807b5d65
      Mark OLESEN authored
      - consistent with the static sizing of FixedList,
        but signed for convenience
      807b5d65
    • Mark OLESEN's avatar
      COMP: resolve label-size=64 ambiguities · 3bc78e5b
      Mark OLESEN authored
      * The generic templated constructor and assignment
        Eg,
           template<class ListType> DynList(const ListType& lst)
      
        Provides the best candidate when there is a int32/int64 mismatch:
           DynList<int64_t> list(10)
      
        The cleanest solution would be avoid the generic templated versions
        entirely, but they are needed when converting from rows of graph data
        (which are stored as LongList). However, this approach introduced some
        odd regressions.
      v1712.64bit
      3bc78e5b