diff options
Diffstat (limited to 'src/lib/utils/parsing.h')
-rw-r--r-- | src/lib/utils/parsing.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/lib/utils/parsing.h b/src/lib/utils/parsing.h index 01a17bc3a..ba3b5eadd 100644 --- a/src/lib/utils/parsing.h +++ b/src/lib/utils/parsing.h @@ -11,10 +11,7 @@ #include <botan/types.h> #include <string> #include <vector> -#include <set> - #include <istream> -#include <functional> #include <map> namespace Botan { @@ -37,17 +34,6 @@ BOTAN_TEST_API std::vector<std::string> split_on( const std::string& str, char delim); /** -* Split a string on a character predicate -* @param str the input string -* @param pred the predicate -* -* This function will likely be removed in a future release -*/ -std::vector<std::string> -split_on_pred(const std::string& str, - std::function<bool (char)> pred); - -/** * Join a string * @param strs strings to join * @param delim the delimitor |