| Summary: | Make RenderObject noncopyable | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Alex Christensen <achristensen> | ||||
| Component: | New Bugs | Assignee: | Alex Christensen <achristensen> | ||||
| Status: | RESOLVED INVALID | ||||||
| Severity: | Normal | CC: | cdumez | ||||
| Priority: | P2 | ||||||
| Version: | WebKit Nightly Build | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
|
Description
Alex Christensen
2018-08-06 13:31:32 PDT
Created attachment 346649 [details]
Patch
Comment on attachment 346649 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=346649&action=review > Source/WebCore/rendering/RenderObject.h:107 > + WTF_MAKE_NONCOPYABLE(RenderObject); It is already uncopyable given this data member: Node& m_node; Comment on attachment 346649 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=346649&action=review >> Source/WebCore/rendering/RenderObject.h:107 >> + WTF_MAKE_NONCOPYABLE(RenderObject); > > It is already uncopyable given this data member: > Node& m_node; See following review comment by Darin: https://bugs.webkit.org/show_bug.cgi?id=158111#c45 |