| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (border_style_string.GetLength()) {No longer needed?
wchar_t wch = rnd.name_.Front();Pre-existing: local var not needed.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
if (str.GetLength() > 0 && IsDigitSeparatorOrDecimalMark(str.Front())) {No longer needed?
if (ident.IsEmpty() || ident.Front() != L'!') {No longer needed?
if (wsInstName.GetLength() > 0 && wsInstName.Front() == '_' &&No longer needed?
if (wsInstName.GetLength() < 1 || wsInstName.Front() != '_' ||No longer needed?
if (wsInstName.GetLength() < 1 || wsInstName.Front() != '_' ||No longer needed?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +1 |
if (border_style_string.GetLength()) {Tom SepezNo longer needed?
Done
if (str.GetLength() > 0 && IsDigitSeparatorOrDecimalMark(str.Front())) {Tom SepezNo longer needed?
Done
Pre-existing: local var not needed.
Done
if (ident.IsEmpty() || ident.Front() != L'!') {Tom SepezNo longer needed?
Empty check helps with substr bounds elision later, typically.
if (wsInstName.GetLength() > 0 && wsInstName.Front() == '_' &&Tom SepezNo longer needed?
Length check helpful for substr().
if (wsInstName.GetLength() < 1 || wsInstName.Front() != '_' ||Tom SepezNo longer needed?
Length check may help elide bounds check in substr().
if (wsInstName.GetLength() < 1 || wsInstName.Front() != '_' ||Tom SepezNo longer needed?
ditto
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Convert some PDFium string indexing by [0] to Front()
Indexing {Byte,Wide}Strings (as opposed to {Byte,Wide}StringViews)
usually indicates an iteration pattern that can restrict the optimizer.
To avoid looking at instances while reading the code where there isn't
any iteration, remove indexing by the constant 0. This theoretically
avoids some CHECKS() while not requiring new branches that can't be
optimized away.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |