зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1117772
- Return false from PluginInstanceParent::CreateBackground; r=baku
clang emits the following warning on this code, which is treated as an error: error: implicit conversion of nullptr constant to 'bool' [-Werror,-Wnull-conversion]
This commit is contained in:
Родитель
a41280816e
Коммит
67edad67ab
|
@ -813,7 +813,7 @@ PluginInstanceParent::CreateBackground(const nsIntSize& aSize)
|
|||
gfxImageFormat::RGB24);
|
||||
return !!mBackground;
|
||||
#else
|
||||
return nullptr;
|
||||
return false;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче