From 8490e297a90f04af65ddddcc459675c3d04d2c2c Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Mon, 20 Oct 2014 11:39:23 +0200 Subject: [PATCH] add todo marker --- Util/StringUtil.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Util/StringUtil.h b/Util/StringUtil.h index 49fa8bb76..3c9375ca7 100644 --- a/Util/StringUtil.h +++ b/Util/StringUtil.h @@ -146,6 +146,7 @@ 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);