bump product version to 7.6.3.2-android
[LibreOffice.git] / external / clucene / patches / write-strings.patch
blobd1661ee727d138e4bd391c846160d62df8819e0a
1 --- src/contribs-lib/CLucene/analysis/PorterStemmer.cpp
2 +++ src/contribs-lib/CLucene/analysis/PorterStemmer.cpp
3 @@ -94,7 +94,7 @@
4 return true;
7 - bool PorterStemmer::ends(TCHAR *s) {
8 + bool PorterStemmer::ends(const TCHAR *s) {
9 size_t l = _tcslen(s);
10 size_t o = k-l+1;
11 if (o < k0)
12 --- src/contribs-lib/CLucene/analysis/PorterStemmer.h
13 +++ src/contribs-lib/CLucene/analysis/PorterStemmer.h
14 @@ -68,7 +68,7 @@
16 bool cvc(size_t i);
18 - bool ends(TCHAR *s);
19 + bool ends(const TCHAR *s);
21 /* setto(s) sets (j+1),...k to the characters in the string s, readjusting
22 k. */