1. 27 Aug, 2019 2 commits
  2. 18 Jul, 2019 1 commit
  3. 24 Jun, 2019 2 commits
  4. 16 Apr, 2019 1 commit
  5. 25 Jan, 2019 1 commit
    • iterator: cast filesystem iterator entry values explicitly · 1d4ddb8e
      The filesystem iterator takes `stat` data from disk and puts them into
      index entries, which use 32 bit ints for time (the seconds portion) and
      filesize.  However, on most systems these are not 32 bit, thus will
      typically invoke a warning.
      
      Most users ignore these fields entirely.  Diff and checkout code do use
      the values, however only for the cache to determine if they should check
      file modification.  Thus, this is not a critical error (and will cause a
      hash recomputation at worst).
      Edward Thomson committed
  6. 22 Jan, 2019 1 commit
  7. 01 Dec, 2018 1 commit
  8. 28 Nov, 2018 1 commit
  9. 04 Nov, 2018 1 commit
  10. 03 Nov, 2018 1 commit
    • iterator: optionally hash filesystem iterators · 2b12dcf6
      Optionally hash the contents of files encountered in the filesystem or
      working directory iterators.  This is not expected to be used in
      production code paths, but may allow us to simplify some test contexts.
      
      For working directory iterators, apply filters as appropriate, since we
      have the context able to do it.
      Edward Thomson committed
  11. 10 Jun, 2018 1 commit
  12. 31 Jan, 2018 2 commits
  13. 30 Dec, 2017 1 commit
  14. 29 Dec, 2017 1 commit
  15. 03 Jul, 2017 1 commit
    • Make sure to always include "common.h" first · 0c7f49dd
      Next to including several files, our "common.h" header also declares
      various macros which are then used throughout the project. As such, we
      have to make sure to always include this file first in all
      implementation files. Otherwise, we might encounter problems or even
      silent behavioural differences due to macros or defines not being
      defined as they should be. So in fact, our header and implementation
      files should make sure to always include "common.h" first.
      
      This commit does so by establishing a common include pattern. Header
      files inside of "src" will now always include "common.h" as its first
      other file, separated by a newline from all the other includes to make
      it stand out as special. There are two cases for the implementation
      files. If they do have a matching header file, they will always include
      this one first, leading to "common.h" being transitively included as
      first file. If they do not have a matching header file, they instead
      include "common.h" as first file themselves.
      
      This fixes the outlined problems and will become our standard practice
      for header and source files inside of the "src/" from now on.
      Patrick Steinhardt committed
  16. 14 Nov, 2016 1 commit
  17. 22 Aug, 2016 1 commit
  18. 21 Apr, 2016 1 commit
  19. 02 Apr, 2016 1 commit
  20. 31 Mar, 2016 3 commits
  21. 24 Mar, 2016 7 commits
  22. 23 Mar, 2016 6 commits
  23. 20 Mar, 2016 1 commit
  24. 17 Feb, 2016 1 commit