aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/utils/parsing.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2020-11-10 08:49:27 -0500
committerJack Lloyd <[email protected]>2020-11-10 08:49:27 -0500
commit80f7ad77e3faa944cba045a11f58e5c90cbf7415 (patch)
tree8d44e41e04eafb1d2e7370a20ff95a0e008df127 /src/lib/utils/parsing.h
parentf227c7ef3eefdfe9bd7798adc5ed658dc078d0be (diff)
Remove split_on_pred
Diffstat (limited to 'src/lib/utils/parsing.h')
-rw-r--r--src/lib/utils/parsing.h14
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