[protozero] 02/08: Merge tag 'upstream/1.4.0'

Bas Couwenberg sebastic at debian.org
Fri Jul 22 14:39:23 UTC 2016


This is an automated email from the git hooks/post-receive script.

sebastic pushed a commit to branch master
in repository protozero.

commit 58d33fb69d206aeedfb2fed4410c27e71ddd656e
Merge: c70f46c 523cc15
Author: Bas Couwenberg <sebastic at xs4all.nl>
Date:   Fri Jul 22 13:06:26 2016 +0200

    Merge tag 'upstream/1.4.0'
    
    Upstream version 1.4.0

 .travis.yml                                    |   2 +-
 CHANGELOG.md                                   |  18 +-
 CONTRIBUTING.md                                |   1 +
 Makefile                                       |  22 +-
 README.md                                      |  41 +-
 UPGRADING.md                                   |  66 +++
 doc/Doxyfile                                   |   4 +-
 doc/cheatsheet.md                              |  67 +++
 doc/macros.md                                  |  48 ++
 tutorial.md => doc/tutorial.md                 |   8 +-
 include/protozero/byteswap.hpp                 |   6 +-
 include/protozero/exception.hpp                |   8 +-
 include/protozero/iterators.hpp                | 373 ++++++++++++
 include/protozero/pbf_builder.hpp              |  20 +-
 include/protozero/pbf_message.hpp              |  10 +-
 include/protozero/pbf_reader.hpp               | 763 +++++++++----------------
 include/protozero/pbf_writer.hpp               | 240 +++++---
 include/protozero/types.hpp                    | 170 +++++-
 include/protozero/varint.hpp                   | 125 ++--
 include/protozero/version.hpp                  |  17 +-
 package.json                                   |   2 +-
 test/include/packed_access.hpp                 | 234 ++++++++
 test/include/scalar_access.hpp                 |  20 +
 test/include/test.hpp                          |   4 +
 test/t/basic/test_cases.cpp                    |  64 +--
 test/t/complex/test_cases.cpp                  |  56 +-
 test/t/data_view/test_cases.cpp                |  83 +++
 test/t/exceptions/test_cases.cpp               |  34 +-
 test/t/fixed32/data-pos200.pbf                 | Bin 0 -> 5 bytes
 test/t/fixed32/testcase.cpp                    |   3 +
 test/t/fixed64/data-pos200.pbf                 | Bin 0 -> 9 bytes
 test/t/fixed64/testcase.cpp                    |   3 +
 test/t/int32/data-neg200.pbf                   |   1 +
 test/t/int32/data-pos200.pbf                   |   1 +
 test/t/int32/testcase.cpp                      |   6 +
 test/t/int64/data-neg200.pbf                   |   1 +
 test/t/int64/data-pos200.pbf                   |   1 +
 test/t/int64/testcase.cpp                      |   6 +
 test/t/message/test_cases.cpp                  |   7 +
 test/t/repeated_packed_bool/test_cases.cpp     |  16 +-
 test/t/repeated_packed_double/test_cases.cpp   |  12 +-
 test/t/repeated_packed_enum/test_cases.cpp     |  16 +-
 test/t/repeated_packed_fixed32/data-many.pbf   | Bin 18 -> 22 bytes
 test/t/repeated_packed_fixed32/test_cases.cpp  | 202 +------
 test/t/repeated_packed_fixed32/testcase.cpp    |   1 +
 test/t/repeated_packed_fixed64/data-many.pbf   | Bin 34 -> 42 bytes
 test/t/repeated_packed_fixed64/test_cases.cpp  |  93 +--
 test/t/repeated_packed_fixed64/testcase.cpp    |   1 +
 test/t/repeated_packed_float/test_cases.cpp    |  12 +-
 test/t/repeated_packed_int32/data-many.pbf     | Bin 30 -> 42 bytes
 test/t/repeated_packed_int32/test_cases.cpp    |  86 +--
 test/t/repeated_packed_int32/testcase.cpp      |   4 +-
 test/t/repeated_packed_int64/data-many.pbf     | Bin 34 -> 46 bytes
 test/t/repeated_packed_int64/test_cases.cpp    | 122 +---
 test/t/repeated_packed_int64/testcase.cpp      |   4 +-
 test/t/repeated_packed_sfixed32/data-many.pbf  | Bin 26 -> 34 bytes
 test/t/repeated_packed_sfixed32/test_cases.cpp |  85 +--
 test/t/repeated_packed_sfixed32/testcase.cpp   |   4 +-
 test/t/repeated_packed_sfixed64/data-many.pbf  | Bin 50 -> 66 bytes
 test/t/repeated_packed_sfixed64/test_cases.cpp |  84 +--
 test/t/repeated_packed_sfixed64/testcase.cpp   |   4 +-
 test/t/repeated_packed_sint32/data-many.pbf    | Bin 16 -> 20 bytes
 test/t/repeated_packed_sint32/test_cases.cpp   |  84 +--
 test/t/repeated_packed_sint32/testcase.cpp     |   4 +-
 test/t/repeated_packed_sint64/data-many.pbf    | Bin 26 -> 30 bytes
 test/t/repeated_packed_sint64/test_cases.cpp   | 122 +---
 test/t/repeated_packed_sint64/testcase.cpp     |   4 +-
 test/t/repeated_packed_uint32/data-many.pbf    | Bin 10 -> 12 bytes
 test/t/repeated_packed_uint32/test_cases.cpp   |  82 +--
 test/t/repeated_packed_uint32/testcase.cpp     |   1 +
 test/t/repeated_packed_uint64/data-many.pbf    | Bin 15 -> 17 bytes
 test/t/repeated_packed_uint64/test_cases.cpp   |  82 +--
 test/t/repeated_packed_uint64/testcase.cpp     |   1 +
 test/t/rollback/test_cases.cpp                 |  12 +-
 test/t/sfixed32/data-neg200.pbf                |   1 +
 test/t/sfixed32/data-pos200.pbf                | Bin 0 -> 5 bytes
 test/t/sfixed32/testcase.cpp                   |   6 +
 test/t/sfixed64/data-neg200.pbf                |   1 +
 test/t/sfixed64/data-pos200.pbf                | Bin 0 -> 9 bytes
 test/t/sfixed64/testcase.cpp                   |   6 +
 test/t/sint32/data-neg200.pbf                  |   1 +
 test/t/sint32/data-pos200.pbf                  |   1 +
 test/t/sint32/testcase.cpp                     |   8 +-
 test/t/sint64/data-neg200.pbf                  |   1 +
 test/t/sint64/data-pos200.pbf                  |   1 +
 test/t/sint64/testcase.cpp                     |   6 +
 test/t/skip/test_cases.cpp                     | 228 ++++----
 test/t/string/test_cases.cpp                   |  49 +-
 test/t/uint32/data-pos200.pbf                  |   1 +
 test/t/uint32/testcase.cpp                     |   3 +
 test/t/uint64/data-pos200.pbf                  |   1 +
 test/t/uint64/testcase.cpp                     |   3 +
 test/t/varint/test_cases.cpp                   | 114 +++-
 test/t/vector_tile/test_cases.cpp              |  29 +-
 test/t/wrong_type_access/test_cases.cpp        |  16 +-
 test/t/zigzag/test_cases.cpp                   |  62 +-
 96 files changed, 2251 insertions(+), 1960 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/protozero.git



More information about the Pkg-grass-devel mailing list