You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by th...@apache.org on 2019/01/09 02:46:18 UTC

[avro] branch master updated (55acae0 -> 7a09848)

This is an automated email from the ASF dual-hosted git repository.

thiru pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git.


    from 55acae0  Turn off doclint for javadoc and update links so javadoc generation won't fail
     add 298047b  Replaced boost::array with std::array
     add e5fdce5  Replaced boost static_assert with std static_assert
     add 63a34a6  Replaced boost type_traits with C++ std type_traits
     add c3a488c  Replaced boost smart pointers with C++ std equivalents
     add 695d83d  Replaced ptr_vector with vector<unique_ptr>
     add 29ebfc3  Fixed a few issues reported in Linux environment
     add 8a42cd0  Removed Boost.hh which is no longer required
     new 7a09848  Merge pull request #425 from thiru-apache/AVRO-2295

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lang/c++/api/AvroParse.hh                  |  15 ++--
 lang/c++/api/AvroSerialize.hh              |   9 +--
 lang/c++/api/AvroTraits.hh                 |  10 +--
 lang/c++/api/Boost.hh                      | 113 -----------------------------
 lang/c++/api/DataFile.hh                   |   8 +-
 lang/c++/api/Decoder.hh                    |   7 +-
 lang/c++/api/Encoder.hh                    |   5 +-
 lang/c++/api/Layout.hh                     |   9 +--
 lang/c++/api/Node.hh                       |   4 +-
 lang/c++/api/NodeImpl.hh                   |   6 +-
 lang/c++/api/Parser.hh                     |   4 +-
 lang/c++/api/Reader.hh                     |   5 +-
 lang/c++/api/Resolver.hh                   |   3 +-
 lang/c++/api/ResolverSchema.hh             |   5 +-
 lang/c++/api/Serializer.hh                 |   3 +-
 lang/c++/api/Specific.hh                   |  10 +--
 lang/c++/api/Stream.hh                     |   2 +-
 lang/c++/api/Writer.hh                     |   7 +-
 lang/c++/api/Zigzag.hh                     |   6 +-
 lang/c++/api/buffer/Buffer.hh              |   3 +-
 lang/c++/api/buffer/BufferReader.hh        |  11 +--
 lang/c++/api/buffer/detail/BufferDetail.hh |   4 +-
 lang/c++/impl/BinaryDecoder.cc             |   6 +-
 lang/c++/impl/BinaryEncoder.cc             |   8 +-
 lang/c++/impl/Compiler.cc                  |   8 +-
 lang/c++/impl/DataFile.cc                  |  20 ++---
 lang/c++/impl/Resolver.cc                  |  78 ++++++++++----------
 lang/c++/impl/Stream.cc                    |   4 +-
 lang/c++/impl/Types.cc                     |   6 +-
 lang/c++/impl/ValidSchema.cc               |   4 +-
 lang/c++/impl/Validator.cc                 |   8 +-
 lang/c++/impl/Zigzag.cc                    |   4 +-
 lang/c++/impl/avrogencpp.cc                |   2 +-
 lang/c++/impl/json/JsonDom.cc              |  11 ++-
 lang/c++/impl/json/JsonDom.hh              |  12 +--
 lang/c++/impl/parsing/JsonCodec.cc         |  15 ++--
 lang/c++/impl/parsing/ResolvingDecoder.cc  |  14 ++--
 lang/c++/impl/parsing/Symbol.hh            |  23 +++---
 lang/c++/impl/parsing/ValidatingCodec.cc   |  18 ++---
 lang/c++/impl/parsing/ValidatingCodec.hh   |   1 -
 lang/c++/test/DataFileTests.cc             |   8 +-
 lang/c++/test/SpecificTests.cc             |   2 +-
 lang/c++/test/buffertest.cc                |   3 +-
 lang/c++/test/testgentest.cc               |   2 +-
 lang/c++/test/unittest.cc                  |   5 +-
 45 files changed, 189 insertions(+), 322 deletions(-)
 delete mode 100644 lang/c++/api/Boost.hh


[avro] 01/01: Merge pull request #425 from thiru-apache/AVRO-2295

Posted by th...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

thiru pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 7a098485a585fa3e387e2ad2b2e4af682a88a997
Merge: 55acae0 8a42cd0
Author: Thiruvalluvan M G <th...@apache.org>
AuthorDate: Wed Jan 9 08:16:13 2019 +0530

    Merge pull request #425 from thiru-apache/AVRO-2295
    
    Replaced boost facilities with C++ 11 std wherever available

 lang/c++/api/AvroParse.hh                  |  15 ++--
 lang/c++/api/AvroSerialize.hh              |   9 +--
 lang/c++/api/AvroTraits.hh                 |  10 +--
 lang/c++/api/Boost.hh                      | 113 -----------------------------
 lang/c++/api/DataFile.hh                   |   8 +-
 lang/c++/api/Decoder.hh                    |   7 +-
 lang/c++/api/Encoder.hh                    |   5 +-
 lang/c++/api/Layout.hh                     |   9 +--
 lang/c++/api/Node.hh                       |   4 +-
 lang/c++/api/NodeImpl.hh                   |   6 +-
 lang/c++/api/Parser.hh                     |   4 +-
 lang/c++/api/Reader.hh                     |   5 +-
 lang/c++/api/Resolver.hh                   |   3 +-
 lang/c++/api/ResolverSchema.hh             |   5 +-
 lang/c++/api/Serializer.hh                 |   3 +-
 lang/c++/api/Specific.hh                   |  10 +--
 lang/c++/api/Stream.hh                     |   2 +-
 lang/c++/api/Writer.hh                     |   7 +-
 lang/c++/api/Zigzag.hh                     |   6 +-
 lang/c++/api/buffer/Buffer.hh              |   3 +-
 lang/c++/api/buffer/BufferReader.hh        |  11 +--
 lang/c++/api/buffer/detail/BufferDetail.hh |   4 +-
 lang/c++/impl/BinaryDecoder.cc             |   6 +-
 lang/c++/impl/BinaryEncoder.cc             |   8 +-
 lang/c++/impl/Compiler.cc                  |   8 +-
 lang/c++/impl/DataFile.cc                  |  20 ++---
 lang/c++/impl/Resolver.cc                  |  78 ++++++++++----------
 lang/c++/impl/Stream.cc                    |   4 +-
 lang/c++/impl/Types.cc                     |   6 +-
 lang/c++/impl/ValidSchema.cc               |   4 +-
 lang/c++/impl/Validator.cc                 |   8 +-
 lang/c++/impl/Zigzag.cc                    |   4 +-
 lang/c++/impl/avrogencpp.cc                |   2 +-
 lang/c++/impl/json/JsonDom.cc              |  11 ++-
 lang/c++/impl/json/JsonDom.hh              |  12 +--
 lang/c++/impl/parsing/JsonCodec.cc         |  15 ++--
 lang/c++/impl/parsing/ResolvingDecoder.cc  |  14 ++--
 lang/c++/impl/parsing/Symbol.hh            |  23 +++---
 lang/c++/impl/parsing/ValidatingCodec.cc   |  18 ++---
 lang/c++/impl/parsing/ValidatingCodec.hh   |   1 -
 lang/c++/test/DataFileTests.cc             |   8 +-
 lang/c++/test/SpecificTests.cc             |   2 +-
 lang/c++/test/buffertest.cc                |   3 +-
 lang/c++/test/testgentest.cc               |   2 +-
 lang/c++/test/unittest.cc                  |   5 +-
 45 files changed, 189 insertions(+), 322 deletions(-)