mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 563318: Work around what appears to be a compiler bug. r=bz
This commit is contained in:
parent
cdb5d5b24a
commit
787f8ba1fe
@ -1078,6 +1078,10 @@ CSSParserImpl::ParseRule(const nsAString& aRule,
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// See Bug 723197
|
||||
#ifdef _MSC_VER
|
||||
#pragma optimize( "", off )
|
||||
#endif
|
||||
nsresult
|
||||
CSSParserImpl::ParseProperty(const nsCSSProperty aPropID,
|
||||
const nsAString& aPropValue,
|
||||
@ -1153,6 +1157,9 @@ CSSParserImpl::ParseProperty(const nsCSSProperty aPropID,
|
||||
ReleaseScanner();
|
||||
return NS_OK;
|
||||
}
|
||||
#ifdef _MSC_VER
|
||||
#pragma optimize( "", on )
|
||||
#endif
|
||||
|
||||
nsresult
|
||||
CSSParserImpl::ParseMediaList(const nsSubstring& aBuffer,
|
||||
|
Loading…
Reference in New Issue
Block a user