Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,6 @@ jobs:
libs/core \
libs/describe \
libs/detail \
libs/endian \
libs/function \
libs/function_types \
libs/functional \
Expand Down
4 changes: 0 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,6 @@ list(APPEND boost_spirit_x4_boost_deps mp11)
list(APPEND boost_spirit_x4_boost_deps predef)
list(APPEND boost_spirit_x4_boost_deps io)

# Everything required by `endian` (manually confirmed)
list(APPEND boost_spirit_x4_boost_deps endian) # used in binary parsers
list(APPEND boost_spirit_x4_boost_deps config)

# Everything required by `preprocessor` (manually confirmed)
list(APPEND boost_spirit_x4_boost_deps preprocessor)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ We're trying hard to reduce these dependencies. We aim to remove these entirely
```console
git submodule update --init --depth 1 --recursive -- \
tools/build tools/boost_install libs/assert libs/bind libs/config \
libs/container_hash libs/core libs/describe libs/detail libs/endian \
libs/container_hash libs/core libs/describe libs/detail \
libs/function libs/function_types libs/functional libs/fusion \
libs/integer libs/io libs/mp11 libs/mpl libs/predef libs/preprocessor \
libs/static_assert libs/throw_exception libs/tuple libs/type_index \
Expand Down
192 changes: 0 additions & 192 deletions include/boost/spirit/x4/binary.hpp

This file was deleted.

1 change: 0 additions & 1 deletion test/x4/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ x4_define_tests(
attr
attribute
attribute_type_check
binary
bool
char
char_class
Expand Down
1 change: 0 additions & 1 deletion test/x4/Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ run actions.cpp catch2 ;
run alternative.cpp catch2 ;
run and_predicate.cpp catch2 ;
run attr.cpp catch2 ;
run binary.cpp catch2 ;
run bool.cpp catch2 ;
run char.cpp catch2 ;
run char_class.cpp catch2 ;
Expand Down
Loading