aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/pire/ut/approx_matching_ut.cpp
diff options
context:
space:
mode:
authorMaxim Yurchuk <maxim-yurchuk@ydb.tech>2024-10-18 20:31:38 +0300
committerGitHub <noreply@github.com>2024-10-18 20:31:38 +0300
commit2a74bac2d2d3bccb4e10120f1ead805640ec9dd0 (patch)
tree047e4818ced5aaf73f58517629e5260b5291f9f0 /contrib/libs/pire/ut/approx_matching_ut.cpp
parent2d9656823e9521d8c29ea4c9a1d0eab78391abfc (diff)
parent3d834a1923bbf9403cd4a448e7f32b670aa4124f (diff)
downloadydb-2a74bac2d2d3bccb4e10120f1ead805640ec9dd0.tar.gz
Merge pull request #10502 from ydb-platform/mergelibs-241016-1210
Library import 241016-1210
Diffstat (limited to 'contrib/libs/pire/ut/approx_matching_ut.cpp')
-rw-r--r--contrib/libs/pire/ut/approx_matching_ut.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/libs/pire/ut/approx_matching_ut.cpp b/contrib/libs/pire/ut/approx_matching_ut.cpp
index 3b4cb972f6..3920f6ebce 100644
--- a/contrib/libs/pire/ut/approx_matching_ut.cpp
+++ b/contrib/libs/pire/ut/approx_matching_ut.cpp
@@ -240,7 +240,7 @@ Y_UNIT_TEST_SUITE(ApproxMatchingTest) {
text += ystring(3, letter + 'a');
}
const ystring regexp = "^" + text + "$";
- auto fsm = BuildFsm(regexp.Data());
+ auto fsm = BuildFsm(regexp.data());
APPROXIMATE_SCANNER(fsm, 1) {
ACCEPTS(text);
@@ -349,7 +349,7 @@ Y_UNIT_TEST_SUITE(ApproxMatchingTest) {
text += ystring(1, (letter % 26) + 'a');
}
const ystring regexp = "^" + text + "$";
- auto fsm = BuildFsm(regexp.Data());
+ auto fsm = BuildFsm(regexp.data());
auto changedText = text;
APPROXIMATE_SCANNER(fsm, 1) {