[PATCH] D27068: Improve string::find

2022-05-03 Thread JianYongChan via Phabricator via cfe-commits
Tangmou added inline comments. Herald added a project: All. Comment at: libcxx/trunk/include/__string:557 + _CharT __f2 = *__first2; + while (true) { +__len1 = __last1 - __first1; Sorry for the comment after such a long time, but I have a question about thi

[PATCH] D27068: Improve string::find

2022-05-09 Thread JianYongChan via Phabricator via cfe-commits
Tangmou added inline comments. Comment at: libcxx/trunk/include/__string:557 + _CharT __f2 = *__first2; + while (true) { +__len1 = __last1 - __first1; Tangmou wrote: > Sorry for the comment after such a long time, but I have a question about > this patch.