1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0023867: Reading performance improvement

Small improvement in TCollection_AsciiString::Search.
This commit is contained in:
szv 2013-03-28 12:13:26 +04:00
parent f2cc47113f
commit ad2a6c0662

View File

@ -1339,14 +1339,12 @@ Standard_Integer TCollection_AsciiString::Search
if (size) {
int k,j;
int i = 0;
Standard_Boolean find = Standard_False;
while ( i < mylength-size+1 && !find) {
while ( i < mylength-size+1 ) {
k = i++;
j = 0;
while (j < size && mystring[k++] == what[j++])
if (j == size) find = Standard_True;
if (j == size) return i;
}
if (find) return i;
}
return -1;
}