Skip to content

Commit

Permalink
Bump src/third_party/reflect-cpp from 15f2c63 to 8086e14 (#646)
Browse files Browse the repository at this point in the history
Bumps [src/third_party/reflect-cpp](https://github.com/getml/reflect-cpp) from `15f2c63` to `8086e14`.
- [Release notes](https://github.com/getml/reflect-cpp/releases)
- [Commits](getml/reflect-cpp@15f2c63...8086e14)

---
updated-dependencies:
- dependency-name: src/third_party/reflect-cpp
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Jun 3, 2024
1 parent f0aece6 commit 74e74d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/third_party/reflect-cpp
Submodule reflect-cpp updated 73 files
+10 −2 .github/workflows/linux-clang.yaml
+10 −2 .github/workflows/linux-gcc.yaml
+10 −2 .github/workflows/macos-clang-arm.yaml
+10 −2 .github/workflows/macos-clang-x64.yaml
+10 −2 .github/workflows/windows-msvc.yaml
+1 −0 .gitignore
+17 −8 CMakeLists.txt
+1 −1 README.md
+10 −0 benchmarks/CMakeLists.txt
+17 −0 benchmarks/all/CMakeLists.txt
+129 −0 benchmarks/all/canada_read.cpp
+129 −0 benchmarks/all/canada_write.cpp
+3 −0 benchmarks/all/main.cpp
+9 −0 benchmarks/data/canada.json
+16 −0 benchmarks/json/CMakeLists.txt
+425 −0 benchmarks/json/canada.cpp
+3 −0 benchmarks/json/main.cpp
+296 −0 benchmarks/json/simple_read.cpp
+4 −2 docs/README.md
+2 −1 docs/optional_fields.md
+61 −11 docs/processors.md
+57 −0 docs/rfl_skip.md
+21 −4 docs/supporting_your_own_format.md
+2 −0 include/rfl.hpp
+18 −0 include/rfl/NoOptionals.hpp
+10 −0 include/rfl/Processors.hpp
+171 −168 include/rfl/Result.hpp
+20 −0 include/rfl/Skip.hpp
+37 −4 include/rfl/bson/Parser.hpp
+24 −15 include/rfl/bson/Reader.hpp
+5 −0 include/rfl/bson/Writer.hpp
+11 −7 include/rfl/cbor/Reader.hpp
+13 −9 include/rfl/flexbuf/Reader.hpp
+146 −0 include/rfl/internal/Skip.hpp
+29 −0 include/rfl/internal/is_no_optionals_v.hpp
+26 −0 include/rfl/internal/is_skip.hpp
+34 −25 include/rfl/json/Reader.hpp
+3 −1 include/rfl/json/Writer.hpp
+6 −4 include/rfl/json/read.hpp
+8 −4 include/rfl/msgpack/Reader.hpp
+106 −0 include/rfl/parsing/ArrayReader.hpp
+15 −7 include/rfl/parsing/IsReader.hpp
+45 −74 include/rfl/parsing/NamedTupleParser.hpp
+1 −0 include/rfl/parsing/Parser.hpp
+19 −41 include/rfl/parsing/Parser_array.hpp
+21 −15 include/rfl/parsing/Parser_default.hpp
+2 −2 include/rfl/parsing/Parser_named_tuple.hpp
+68 −0 include/rfl/parsing/Parser_skip.hpp
+2 −1 include/rfl/parsing/Parser_tuple.hpp
+4 −4 include/rfl/parsing/Parser_wstring.hpp
+0 −41 include/rfl/parsing/StructReader.hpp
+22 −60 include/rfl/parsing/TupleParser.hpp
+152 −0 include/rfl/parsing/TupleReader.hpp
+21 −47 include/rfl/parsing/VectorParser.hpp
+63 −0 include/rfl/parsing/VectorReader.hpp
+91 −29 include/rfl/parsing/ViewReader.hpp
+3 −0 include/rfl/parsing/is_empty.hpp
+5 −0 include/rfl/parsing/is_set_like.hpp
+12 −8 include/rfl/toml/Reader.hpp
+2 −2 include/rfl/xml/Parser.hpp
+13 −9 include/rfl/xml/Reader.hpp
+12 −8 include/rfl/yaml/Reader.hpp
+33 −0 tests/bson/test_oid.cpp
+4 −0 tests/bson/test_oid.hpp
+0 −1 tests/json/test_c_array_class4.cpp
+22 −0 tests/json/test_integers.cpp
+4 −3 tests/json/test_monster_example.cpp
+33 −0 tests/json/test_no_optionals.cpp
+1 −1 tests/json/test_optional_fields.cpp
+30 −0 tests/json/test_skip.cpp
+29 −0 tests/json/test_template.cpp
+27 −0 tests/msgpack/test_skip.cpp
+16 −0 vcpkg.json

0 comments on commit 74e74d4

Please sign in to comment.