diff options
author | Martin Leitner-Ankerl <martin.ankerl@gmail.com> | 2022-05-02 21:45:23 +0200 |
---|---|---|
committer | Martin Leitner-Ankerl <martin.ankerl@gmail.com> | 2022-05-04 07:34:47 +0200 |
commit | 0d7efcdf75607e19fac77bcd146773a03af14492 (patch) | |
tree | 2c632e5c4ae58ddaef9289bb8929308f260f37b5 /test | |
parent | b7ab9db545492927b774912e53aeb834a590621f (diff) |
core_read: Replace boost::split with SplitString
Note that `SplitString` doesn't support token compression, but in this case
it does not matter as empty strings are already skipped anyways.
Also removes split.hpp and classification.hpp from expected includes
Diffstat (limited to 'test')
-rwxr-xr-x | test/lint/lint-includes.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/lint/lint-includes.py b/test/lint/lint-includes.py index b29c7f8b4d..86ebb814c2 100755 --- a/test/lint/lint-includes.py +++ b/test/lint/lint-includes.py @@ -22,9 +22,7 @@ EXCLUDED_DIRS = ["src/leveldb/", "src/univalue/"] EXPECTED_BOOST_INCLUDES = ["boost/algorithm/string.hpp", - "boost/algorithm/string/classification.hpp", "boost/algorithm/string/replace.hpp", - "boost/algorithm/string/split.hpp", "boost/date_time/posix_time/posix_time.hpp", "boost/multi_index/hashed_index.hpp", "boost/multi_index/ordered_index.hpp", |