[Webkit-unassigned] [Bug 261785] New: check-webkit-style should check for `using namespace WebCore` outside of the namespace block in a cpp file
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Sep 19 17:06:38 PDT 2023
https://bugs.webkit.org/show_bug.cgi?id=261785
Bug ID: 261785
Summary: check-webkit-style should check for `using namespace
WebCore` outside of the namespace block in a cpp file
Product: WebKit
Version: Safari 16
Hardware: Unspecified
OS: Unspecified
Status: NEW
Severity: Normal
Priority: P2
Component: Tools / Tests
Assignee: webkit-unassigned at lists.webkit.org
Reporter: simon.fraser at apple.com
Bad:
using namespace WebCore;
namespace WebKit {
...
}
Good:
namespace WebKit {
using namespace WebCore;
...
}
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20230920/b85c2bfa/attachment.htm>
More information about the webkit-unassigned
mailing list