1. 20 Jan, 2019 2 commits
    • deprecation: use the enum type in declaration · 1b2af79e
      The C standard does not specify whether an enum is a signed or unsigned
      type.  Obviously, any enum that includes negative values _must_ be
      signed, but if all values are positive then the compiler is free to
      choose signed or unsigned.
      
      Thus, by changing the type signatures to `git_object_t` and declaring
      the old `GIT_OBJ_` values as a signed or unsigned int, we risk a
      mismatch between what the compiler has chosen for a `git_object_t`'s
      type and our type declaration.
      
      Thus, we declare the deprecated values as the enum instead of guessing.
      Edward Thomson committed
    • deprecation: add `used` attribute · 44827b67
      Recent GCC enables `-Wunused-const-variables`, which makes output quite
      noisy.  Disable unused warnings for our deprecated variables.
      Edward Thomson committed
  2. 19 Jan, 2019 7 commits
  3. 17 Jan, 2019 20 commits
  4. 15 Jan, 2019 2 commits
  5. 14 Jan, 2019 5 commits
  6. 11 Jan, 2019 2 commits
  7. 10 Jan, 2019 2 commits