1. 30 4月, 2020 4 次提交
  2. 29 4月, 2020 12 次提交
  3. 28 4月, 2020 2 次提交
  4. 25 4月, 2020 7 次提交
  5. 24 4月, 2020 2 次提交
  6. 12 4月, 2020 1 次提交
  7. 14 2月, 2020 3 次提交
    • C
      revert trailing comma in old Reader (#1126) · 3beb37ea
      Chen 提交于
      3beb37ea
    • D
      Remove '=delete' from template methods for Xcode 8 (#1133) · dc180eb2
      David Gobbi 提交于
      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
    • C
      Use ccache right (#1139) · a6fe8e27
      Claus Klein 提交于
      * Prevent cmakelint warnings
      
      Use 4 spaces for indent, no tabs
      
      * Use ccache right
      
      fix indents too at CMakeLists.txt
      a6fe8e27
  8. 03 2月, 2020 1 次提交
  9. 20 1月, 2020 1 次提交
  10. 07 1月, 2020 1 次提交
    • D
      Meson updates (#1124) · 6bc55ec3
      David Seifert 提交于
      * 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
  11. 28 12月, 2019 1 次提交
    • A
      json_writer: fix inverted sense in isAnyCharRequiredQuoting (#1120) · f11611c8
      Andrew Childs 提交于
      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
  12. 26 12月, 2019 1 次提交
  13. 23 12月, 2019 2 次提交
  14. 12 12月, 2019 1 次提交
  15. 04 12月, 2019 1 次提交