Bug 1629419 - Replaced size call with .empty r=handyman

Differential Revision: https://phabricator.services.mozilla.com/D80037
This commit is contained in:
nd419 2020-06-23 12:29:40 +00:00
Родитель c112069ef0
Коммит 6b3fdafae1
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -713,7 +713,7 @@ bool ClientWebGLContext::CreateHostContext(const uvec2& requestedSize) {
if (!res.isOk()) { if (!res.isOk()) {
notLost.info.error = res.unwrapErr(); notLost.info.error = res.unwrapErr();
} }
if (notLost.info.error.size()) { if (notLost.info.error.empty()) {
ThrowEvent_WebGLContextCreationError(notLost.info.error); ThrowEvent_WebGLContextCreationError(notLost.info.error);
return false; return false;
} }