diff options
| author | robot-piglet <[email protected]> | 2024-10-11 18:59:18 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2024-10-11 19:10:25 +0300 |
| commit | 4b65bbe0c0af2054762b6ed9ddfd1e15160aca00 (patch) | |
| tree | 520f0ee5eff62689f3e00430310a682aa5c1dac4 /contrib/libs/pire/ut/approx_matching_ut.cpp | |
| parent | 82e2f065743d14bda08cbf9e1f1f046cda11a3e2 (diff) | |
Intermediate changes
commit_hash:0c8398a3ccea3051aa5a3484e6c741e13151a695
Diffstat (limited to 'contrib/libs/pire/ut/approx_matching_ut.cpp')
| -rw-r--r-- | contrib/libs/pire/ut/approx_matching_ut.cpp | 4 |
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 3b4cb972f60..3920f6ebce8 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) { |
