Index: src/plugin/PluginWbPassThrough.cpp |
diff --git a/src/plugin/PluginWbPassThrough.cpp b/src/plugin/PluginWbPassThrough.cpp |
index 204090f8480c05d288c7c4b60fe642331266bcbe..d228683f1f1f9aca74e0554b71cb33b724f30477 100644 |
--- a/src/plugin/PluginWbPassThrough.cpp |
+++ b/src/plugin/PluginWbPassThrough.cpp |
@@ -38,19 +38,6 @@ namespace |
"</body>" |
"</html>"; |
- template <typename T> |
- T ASCIIStringToLower(const T& text) |
- { |
- T textlower; |
- std::transform(text.begin(), text.end(), std::back_inserter(textlower), |
- [](T::value_type ch) |
- { |
- return std::tolower(ch, std::locale()); |
- } |
- ); |
- return textlower; |
- } |
- |
typedef AdblockPlus::FilterEngine::ContentType ContentType; |
template <class T> |