1. 16 Feb, 2020 3 commits
    • Max Kellermann's avatar
      release v0.21.20 · f24bcc7f
      Max Kellermann authored
      f24bcc7f
    • Max Kellermann's avatar
      .travis.yml: use GTest 1.8.0 instead of HEAD · 89800324
      Max Kellermann authored
      Fixes strange C++11 compatibility problems during GTest installation:
      
       /tmp/gtest-20200216-20679-mu1044/googletest/include/gtest/internal/gtest-internal.h:1249:1: error: unknown type name 'constexpr'
       constexpr bool TypedTestCaseIsDeprecated() { return true; }
      
       /tmp/gtest-20200216-20679-mu1044/googletest/include/gtest/internal/gtest-internal.h:1249:11: error: expected unqualified-id
       constexpr bool TypedTestCaseIsDeprecated() { return true; }
      
       /tmp/gtest-20200216-20679-mu1044/googletest/include/gtest/internal/gtest-internal.h:1254:1: error: unknown type name 'constexpr'
       constexpr bool RegisterTypedTestCase_P_IsDeprecated() { return true; }
      89800324
    • Rosen Penev's avatar
      Fix travis · 050e3041
      Rosen Penev authored
      pip is bugged on arm64 and s390x. Add --no-cache-dir to fix. For
      consistency, it doesn't hurt to add everywhere.
      050e3041
  2. 10 Feb, 2020 1 commit
  3. 04 Feb, 2020 5 commits
  4. 01 Feb, 2020 2 commits
  5. 31 Jan, 2020 1 commit
  6. 25 Jan, 2020 5 commits
  7. 17 Jan, 2020 10 commits
  8. 14 Jan, 2020 1 commit
  9. 12 Jan, 2020 10 commits
  10. 01 Jan, 2020 1 commit
  11. 31 Dec, 2019 1 commit
    • Jacob Vosmaer's avatar
      Clang: only use [[fallthrough]] in C++ files · dca05193
      Jacob Vosmaer authored
      It appears that [[fallthrough]] is valid in C++ but not in C. And
      in some Clang versions (e.g. Clang 11 on macOS), Clang is pedantic
      about this and considers it an error to use [[fallthrough]] in a
      .c file such as src/util/format.c.
      
      This changes makes gcc_fallthrough a no-op under Clang in C files.
      dca05193