aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-10-11 18:59:18 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-10-11 19:10:25 +0300
commit4b65bbe0c0af2054762b6ed9ddfd1e15160aca00 (patch)
tree520f0ee5eff62689f3e00430310a682aa5c1dac4 /contrib/libs
parent82e2f065743d14bda08cbf9e1f1f046cda11a3e2 (diff)
downloadydb-4b65bbe0c0af2054762b6ed9ddfd1e15160aca00.tar.gz
Intermediate changes
commit_hash:0c8398a3ccea3051aa5a3484e6c741e13151a695
Diffstat (limited to 'contrib/libs')
-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) {