Skip to content
Snippets Groups Projects
  1. Nov 06, 2016
  2. Oct 18, 2016
  3. Oct 17, 2016
  4. Oct 12, 2016
  5. Oct 05, 2016
  6. Sep 22, 2016
  7. Sep 21, 2016
  8. Sep 13, 2016
  9. Sep 12, 2016
  10. Aug 08, 2016
  11. Aug 07, 2016
  12. Aug 04, 2016
  13. Jul 28, 2016
  14. Jul 16, 2016
  15. Jul 15, 2016
  16. Jul 11, 2016
    • Arseny Kapoulkine's avatar
      Makefile: Add -Wcast-qual · 1d3befea
      Arseny Kapoulkine authored
      It is probably redundant given that we have -Wold-style-cast, but it's better
      to warn about casts like this in case we ever need to remove the latter flag.
      1d3befea
  17. Jun 18, 2016
  18. Jun 11, 2016
  19. May 16, 2016
  20. Apr 24, 2016
  21. Apr 14, 2016
    • Arseny Kapoulkine's avatar
      Adjust XML allocation pages to have the exact specified size · 2d5980b4
      Arseny Kapoulkine authored
      Previously the page size was defining the data size, and due to additional
      headers (+ recently removed allocation padding) the actual allocation was a bit
      bigger.
      
      The problem is that some allocators round 2^N+k allocations to 2^N+M, which can
      result in noticeable waste of space. Specifically, on 64-bit OSX allocating the
      previous page size (32k+40) resulted in 32k+512 allocation, thereby wasting 472
      bytes, or 1.4%.
      
      Now we have the allocation size specified exactly and just recompute the available
      data size, which can in small space savings depending on the allocator.
      2d5980b4
    • Arseny Kapoulkine's avatar
      Remove extra space in an empty tag for format_raw · 2e0ed828
      Arseny Kapoulkine authored
      When using format_raw the space in the empty tag (<node />) is the only
      character that does not have to be there; so format_raw almost results in
      a minimal XML but not quite.
      
      It's pretty unlikely that this is crucial for any users - the formatting
      change should be benign, and it's better to improve format_raw than to add
      yet another flag.
      
      Fixes #87.
      2e0ed828
  22. Apr 03, 2016
  23. Mar 28, 2016
Loading