[Webkit-unassigned] [Bug 157693] New: Extend protector naming code style guideline to operator= assignment
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Fri May 13 16:41:14 PDT 2016
https://bugs.webkit.org/show_bug.cgi?id=157693
Bug ID: 157693
Summary: Extend protector naming code style guideline to
operator= assignment
Classification: Unclassified
Product: WebKit
Version: WebKit Nightly Build
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: Tools / Tests
Assignee: webkit-unassigned at lists.webkit.org
Reporter: beidson at apple.com
CC: lforschler at apple.com
Extend protector naming code style guideline to = assignment
https://bugs.webkit.org/show_bug.cgi?id=157591 implemented protector naming rules like so:
RefPtr<Node> protector(node);
RefPtr<Node> protectedThis(this);
But we need to cover operator= assignment, as well.
RefPtr<Node> protector = node;
RefPtr<Node> protectedThis = this;
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160513/c347ceb4/attachment.html>
More information about the webkit-unassigned
mailing list