1. 31 May, 2020 1 commit
  2. 29 May, 2020 1 commit
  3. 21 May, 2020 1 commit
  4. 13 May, 2020 1 commit
  5. 12 May, 2020 1 commit
  6. 08 May, 2020 1 commit
  7. 30 Apr, 2020 3 commits
  8. 29 Apr, 2020 1 commit
  9. 28 Apr, 2020 13 commits
  10. 24 Apr, 2020 9 commits
  11. 12 Apr, 2020 1 commit
  12. 13 Feb, 2020 3 commits
    • Chen's avatar
      revert trailing comma in old Reader (#1126) · 3beb37ea
      Chen authored
      3beb37ea
    • David Gobbi's avatar
      Remove '=delete' from template methods for Xcode 8 (#1133) · dc180eb2
      David Gobbi authored
      For Apple clang-800.0.42.1, which was released with Xcode 8 in
      September 2016, the '=delete' on the 'is' and 'as' methods causes
      the following errors for value.h:
      
        inline declaration of 'as<bool>' follows non-inline definition
        inline declaration of 'is<bool>' follows non-inline definition
      
      etcetera for the other specializations of 'is' and 'as'.  The same
      problem also occurs for clang-3.8 but not clang-3.9 or later.
      dc180eb2
    • Claus Klein's avatar
      Use ccache right (#1139) · a6fe8e27
      Claus Klein authored
      * Prevent cmakelint warnings
      
      Use 4 spaces for indent, no tabs
      
      * Use ccache right
      
      fix indents too at CMakeLists.txt
      a6fe8e27
  13. 03 Feb, 2020 1 commit
  14. 20 Jan, 2020 1 commit
  15. 07 Jan, 2020 1 commit
    • David Seifert's avatar
      Meson updates (#1124) · 6bc55ec3
      David Seifert authored
      * Modernize meson.build
      
      * Make tests optional
      * Use `files()` for quick sanity checks
      
      * Bump version to 1.9.3
      
      * Bump SOVERSION, as some functions were removed
        and structs were changed, as determined by
        libabigail.
      6bc55ec3
  16. 28 Dec, 2019 1 commit
    • Andrew Childs's avatar
      json_writer: fix inverted sense in isAnyCharRequiredQuoting (#1120) · f11611c8
      Andrew Childs authored
      This bug is only affects platforms where `char` is unsigned.
      
      When char is a signed type, values >= 0x80 are also considered < 0,
      and hence require escaping due to the < ' ' condition.
      
      When char is an unsigned type, values >= 0x80 match none of the
      conditions and are considered safe to emit without escaping.
      
      This shows up as a test failure:
      
      * Detail of EscapeSequenceTest/writeEscapeSequence test failure:
      /build/source/src/test_lib_json/main.cpp(3370): expected == result
        Expected: '["\"","\\","\b","\f","\n","\r","\t","\u0278","\ud852\udf62"]
        '
        Actual  : '["\"","\\","\b","\f","\n","\r","\t","ɸ","𤭢"]
        '
      f11611c8