summaryrefslogtreecommitdiff
path: root/src/offmap.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove extra semicolon outside of a functionStefan Widgren2015-02-151-2/+2
| | | | | Without this change, compiling with gcc and pedantic generates warning: ISO C does not allow extra ‘;’ outside of a function.
* Update `khash.h` to pull request 42Edward Thomson2015-02-121-0/+1
| | | | | https://github.com/attractivechaos/klib/pull/42/files introduces `kreallocarray`. Hook that up as our `git__reallocarray`.
* pack: introduce a delta base cacheCarlos Martín Nieto2013-01-111-0/+65
Many delta bases are re-used. Cache them to avoid inflating the same data repeatedly. This version doesn't limit the amount of entries to store, so it can end up using a considerable amound of memory.