From d92e8ca8d206440b1537b22eb5e498ff2a675ebc Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Wed, 17 Dec 2014 15:09:07 +0100 Subject: [PATCH] remove unneeded function --- Util/StringUtil.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Util/StringUtil.h b/Util/StringUtil.h index 3c9375ca7..e6d8e043c 100644 --- a/Util/StringUtil.h +++ b/Util/StringUtil.h @@ -146,12 +146,6 @@ inline std::size_t URIDecode(const std::string &input, std::string &output) inline std::size_t URIDecodeInPlace(std::string &URI) { return URIDecode(URI, URI); } -// TODO: remove after switch to libosmium -inline bool StringStartsWith(const std::string &input, const std::string &prefix) -{ - return boost::starts_with(input, prefix); -} - inline std::string GetRandomString() { std::string s;