1. 14 Jun, 2020 2 commits
  2. 02 Jun, 2020 1 commit
  3. 31 May, 2020 2 commits
  4. 30 May, 2020 3 commits
  5. 29 May, 2020 3 commits
  6. 28 May, 2020 6 commits
  7. 27 May, 2020 3 commits
  8. 26 May, 2020 7 commits
  9. 24 May, 2020 4 commits
  10. 22 May, 2020 7 commits
  11. 21 May, 2020 2 commits
    • ReinUsesLisp's avatar
      buffer_cache: Remove unused boost headers · ebaace29
      ReinUsesLisp authored
      ebaace29
    • ReinUsesLisp's avatar
      map_interval: Add interval allocator and drop hack · a2dcc642
      ReinUsesLisp authored
      Drop the std::list hack to allocate memory indefinitely.
      
      Instead use a custom allocator that keeps references valid until
      destruction. This allocates fixed chunks of memory and puts pointers in
      a free list. When an allocation is no longer used put it back to the
      free list, this doesn't heap allocate because std::vector doesn't change
      the capacity. If the free list is empty, allocate a new chunk.
      a2dcc642