Bug 1298149 - explicitly ignore the result of SendUpdateWindow in ContentParent::SendAsyncUpdate; r=baku

This change doesn't modify the behavior of the code, but it does silence
a clang-cl warning.
This commit is contained in:
Nathan Froyd 2016-09-14 19:28:26 -04:00
Родитель e5a612a8f0
Коммит ca183ff3cd
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -850,7 +850,7 @@ ContentParent::SendAsyncUpdate(nsIWidget* aWidget)
ContentParent* cp = reinterpret_cast<ContentParent*>(
::GetPropW(hwnd, kPluginWidgetContentParentProperty));
if (cp && !cp->IsDestroyed()) {
cp->SendUpdateWindow((uintptr_t)hwnd);
Unused << cp->SendUpdateWindow((uintptr_t)hwnd);
}
}
#endif // defined(XP_WIN)