Commit 53d9fd01 authored by sigbjornf@opera.com's avatar sigbjornf@opera.com

Oilpan: fix build after r175732.

Restore equality test back to being between Node* and a RawPtr<Node>,
for which there is an implicit conversion from a RawPtr<Node> to a
Node*. i.e., a RawPtr<Node> cannot be implicitly converted to a Node&
(and vice versa.)

TBR=haraken@chromium.org,oilpan-reviews@chromium.org
NOTRY=true

Review URL: https://codereview.chromium.org/325573002

git-svn-id: svn://svn.chromium.org/blink/trunk@175745 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent ae437c10
...@@ -280,7 +280,7 @@ void ContainerNode::parserInsertBefore(PassRefPtrWillBeRawPtr<Node> newChild, No ...@@ -280,7 +280,7 @@ void ContainerNode::parserInsertBefore(PassRefPtrWillBeRawPtr<Node> newChild, No
RefPtrWillBeRawPtr<Node> protect(this); RefPtrWillBeRawPtr<Node> protect(this);
if (nextChild.previousSibling() == newChild || nextChild == newChild) // nothing to do if (nextChild.previousSibling() == newChild || &nextChild == newChild) // nothing to do
return; return;
if (document() != newChild->document()) if (document() != newChild->document())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment