Repository: avro Updated Branches: refs/heads/master ad42bb36c -> 57983af07
Fixed AVRO-1866, contributed by Pietro Cerutti Project: http://git-wip-us.apache.org/repos/asf/avro/repo Commit: http://git-wip-us.apache.org/repos/asf/avro/commit/57983af0 Tree: http://git-wip-us.apache.org/repos/asf/avro/tree/57983af0 Diff: http://git-wip-us.apache.org/repos/asf/avro/diff/57983af0 Branch: refs/heads/master Commit: 57983af07b751809141cfc3b6a0ed07f4ea5ae9d Parents: ad42bb3 Author: Thiruvalluvan M G <[email protected]> Authored: Sun Jan 29 18:47:31 2017 +0530 Committer: Thiruvalluvan M G <[email protected]> Committed: Sun Jan 29 18:47:31 2017 +0530 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ lang/c++/impl/json/JsonIO.hh | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/avro/blob/57983af0/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 75e99d0..5a7137a 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -120,8 +120,11 @@ Trunk (not yet released) (Nandor Kollar via tomwhite) AVRO-1930: JsonParser doesn't handle integer scientific notation (Pietro Cerutti via thiru) + AVRO-1912: C++ Resolving Decoding doesn't work if element removed from record in array. (via thiru) + AVRO-1866. JsonNullFormatter fwd-declared as class, defined as struct ( Pietro Cerutti via thiru) + Avro 1.8.1 (14 May 2016) INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/avro/blob/57983af0/lang/c++/impl/json/JsonIO.hh ---------------------------------------------------------------------- diff --git a/lang/c++/impl/json/JsonIO.hh b/lang/c++/impl/json/JsonIO.hh index a5ada2d..15e3557 100644 --- a/lang/c++/impl/json/JsonIO.hh +++ b/lang/c++/impl/json/JsonIO.hh @@ -133,7 +133,8 @@ public: } }; -struct AVRO_DECL JsonNullFormatter { +class AVRO_DECL JsonNullFormatter { +public: JsonNullFormatter(StreamWriter&) { } void handleObjectStart() {}
