Skip to content

Release 0.99.2

Compare
Choose a tag to compare
@danielaparker danielaparker released this 05 Jul 17:16
· 9949 commits to master since this release
  • Included workaround for a C++11 issue in GCC 4.8, contributed by Alex Merry

  • Fixed operator== so that json() == json(json::object())

  • Fixed issue with json assignment to initializer list

  • Fixed issue with assignment to empty json object with multiple keys, e.g.

    json val;
    val["key1"]["key2"] = 1;