зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1247535 - Fix -Wunreachable-code warning in mfbt/Poison.cpp. r=froydnj
mfbt/Poison.cpp:165:26: warning: will never be executed [-Wunreachable-code]
This commit is contained in:
Родитель
ad0b562df7
Коммит
5a6ee4e222
|
@ -192,9 +192,7 @@ ReservePoisonArea(uintptr_t rgnsize)
|
|||
return uintptr_t(result);
|
||||
}
|
||||
|
||||
// no usable poison region identified
|
||||
MOZ_CRASH();
|
||||
return 0;
|
||||
MOZ_CRASH("no usable poison region identified");
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Загрузка…
Ссылка в новой задаче