diff options
author | MarcoFalke <falke.marco@gmail.com> | 2018-07-24 14:49:54 -0400 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2018-07-24 14:50:05 -0400 |
commit | 1211b15bf6c0b2904d90b96a9b3834c5cb9e7b4e (patch) | |
tree | f759e03bdb78463726b80e83c1ce189773bb50de /test | |
parent | 7a9bca61fa5598455d854662a68b560725341f20 (diff) | |
parent | e3245f2e7b6f98cda38a3806da854f7d513fec2f (diff) |
Merge #13656: Remove the boost/algorithm/string/predicate.hpp dependency
e3245f2e7b Removes Boost predicate.hpp dependency (251)
Pull request description:
This pull request removes the `boost/algorithm/string/predicate.hpp` dependency from the project.
To replace the the `predicate.hpp` dependency from the project the function calls to `boost::algorithm::starts_with` and `boost::algorithm::ends_with` have been replaced with respectively C++11's `std::basic_string::front` and `std::basic_string::back` function calls.
Refactors that were not required, but have been done anyways:
- The Boost function `all` was implicitly made available via the `predicate.hpp` header. Instead of including the appropriate header, function calls to `all` have been replaced with function calls to `std::all_of`.
- The `boost::algorithm::is_digit` predicate has been replaced with a custom `IsDigit` function that is locale independent and ASCII deterministic.
Tree-SHA512: 22dda6adfb4d7ac0cabac8cc33e8fb8330c899805acc1ae4ede402c4b11ea75a399414b389dfaa3650d23b47f41351b4650077af9005d598fbe48d5277bdc320
Diffstat (limited to 'test')
-rwxr-xr-x | test/lint/lint-includes.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/lint/lint-includes.sh b/test/lint/lint-includes.sh index 2faaef8954..8f7a1fd76b 100755 --- a/test/lint/lint-includes.sh +++ b/test/lint/lint-includes.sh @@ -49,7 +49,6 @@ EXPECTED_BOOST_INCLUDES=( boost/algorithm/string.hpp boost/algorithm/string/case_conv.hpp boost/algorithm/string/classification.hpp - boost/algorithm/string/predicate.hpp boost/algorithm/string/replace.hpp boost/algorithm/string/split.hpp boost/bind.hpp |