We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17c2c53 commit b9833f8Copy full SHA for b9833f8
plugin/x/src/xpl_regex.cc
@@ -53,7 +53,7 @@ bool xpl::Regex::match(const char *value) const {
53
* and parse the text patter each time that xpl::Regex::match
54
* is called.
55
*/
56
- UnicodeString value_as_utf8{icu::UnicodeString::fromUTF8(value)};
+ icu::UnicodeString value_as_utf8{icu::UnicodeString::fromUTF8(value)};
57
std::unique_ptr<icu::RegexMatcher> regexp{
58
m_pattern->matcher(value_as_utf8, match_status)};
59
0 commit comments