зеркало из https://github.com/mozilla/gecko-dev.git
Fix solaris bustage -
Add (nsISupports *) cast to nsSupportsArray::RemoveElement call, to remove overloading ambiguity detected on Solaris
This commit is contained in:
Родитель
d03fb2c191
Коммит
c1e471397e
|
@ -186,6 +186,9 @@ NS_IMETHODIMP
|
|||
nsConsoleService::UnregisterListener(nsIConsoleListener *listener) {
|
||||
// ignore rv for now, as a comment says it returns prbool instead of
|
||||
// nsresult.
|
||||
mListeners->RemoveElement(listener);
|
||||
|
||||
// Solaris needs the nsISupports cast to avoid confusion with
|
||||
// another nsSupportsArray::RemoveElement overloading.
|
||||
mListeners->RemoveElement((const nsISupports *)listener);
|
||||
return NS_OK;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче