зеркало из https://github.com/mozilla/gecko-dev.git
Fix for AIX build bustage: "../../../htmlparser/src/nsXIFDTD.cpp", line 1690.31: 1540-224: (S) Conversion from "nsString" to a reference to a non-const type "nsString&" requires a temporary.
This commit is contained in:
Родитель
7720827a36
Коммит
df9112216e
|
@ -1687,7 +1687,8 @@ void nsXIFDTD::ProcessDocumentInfoTag(const nsIParserNode& aNode)
|
|||
|
||||
if (GetAttribute(aNode,key,value))
|
||||
{
|
||||
PushNodeAndToken(nsString("XIF_DOC_INFO"));
|
||||
nsString tmpString("XIF_DOC_INFO");
|
||||
PushNodeAndToken(tmpString);
|
||||
CAttributeToken* attribute = new CAttributeToken(key,value);
|
||||
nsIParserNode* top = PeekNode();
|
||||
if (top != nsnull)
|
||||
|
|
|
@ -1687,7 +1687,8 @@ void nsXIFDTD::ProcessDocumentInfoTag(const nsIParserNode& aNode)
|
|||
|
||||
if (GetAttribute(aNode,key,value))
|
||||
{
|
||||
PushNodeAndToken(nsString("XIF_DOC_INFO"));
|
||||
nsString tmpString("XIF_DOC_INFO");
|
||||
PushNodeAndToken(tmpString);
|
||||
CAttributeToken* attribute = new CAttributeToken(key,value);
|
||||
nsIParserNode* top = PeekNode();
|
||||
if (top != nsnull)
|
||||
|
|
Загрузка…
Ссылка в новой задаче