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:
Chris Peterson 2016-02-10 22:09:53 -08:00
Родитель ad0b562df7
Коммит 5a6ee4e222
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -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