Bug 1615142 - Fix gcc builds that error because of an unused variable.

Meh.

MANUAL PUSH: Fuzzing build bustage fix.

CLOSED TREE
This commit is contained in:
Emilio Cobos Álvarez 2020-02-21 01:21:42 +01:00
Родитель c8abdd68c2
Коммит 71b1d98e23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -8491,7 +8491,7 @@ static nsContentAndOffset FindLineBreakingFrame(nsIFrame* aFrame,
// Treat form controls as inline leaves
// XXX we really need a way to determine whether a frame is inline-level
if (nsIFormControlFrame* fcf = do_QueryFrame(aFrame)) {
if (static_cast<nsIFormControlFrame*>(do_QueryFrame(aFrame))) {
return result;
}