From e3e35dcbdd086f113d838b2d9905d93a9f6592d9 Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Mon, 9 Apr 2018 11:36:39 +0200 Subject: [PATCH] Fix compilation with ICU >= 61, part 2 --- src/regex_filter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/regex_filter.h b/src/regex_filter.h index 4a173b55..42bbb411 100644 --- a/src/regex_filter.h +++ b/src/regex_filter.h @@ -100,7 +100,7 @@ inline bool search(const std::basic_string &s, if (ignore_diacritics) { auto us = icu::UnicodeString::fromUTF8( - StringPiece(convertString::apply(s))); + icu::StringPiece(convertString::apply(s))); StripDiacritics::convert(us); return boost::u32regex_search(us, rx); }