[Webkit-unassigned] [Bug 13233] Need to implement an optimizing XPath evaluator

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun May 31 17:07:46 PDT 2009


https://bugs.webkit.org/show_bug.cgi?id=13233


darin at apple.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  Attachment #30817|review?                     |review+
               Flag|                            |




------- Comment #8 from darin at apple.com  2009-05-31 17:07 PDT -------
(From update of attachment 30817)
> +            NodeSet(const NodeSet& other) : m_isSorted(other.m_isSorted), m_subtreesAreDisjoint(other.m_subtreesAreDisjoint), m_nodes(other.m_nodes) { }
> +            NodeSet& operator=(const NodeSet& other) { m_isSorted = other.m_isSorted; m_subtreesAreDisjoint = other.m_subtreesAreDisjoint; m_nodes = other.m_nodes; return *this; }

You should instead delete these explicit definitions. The compiler defaults
would work fine.

r=me


-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list