Bug 1634543 - Followup: Remove one too many consts to unbust the build.

MANUAL PUSH: Bustage fix on a CLOSED TREE
This commit is contained in:
Emilio Cobos Álvarez 2020-05-01 18:45:37 +02:00
parent b44fc070bb
commit f5823dea35

View File

@ -3388,7 +3388,7 @@ bool nsBlockFrame::CachedIsEmpty() {
if (!IsSelfEmpty()) {
return false;
}
for (const auto& line : mLines) {
for (auto& line : mLines) {
if (!line.CachedIsEmpty()) {
return false;
}