Bug 261785

Summary: check-webkit-style should check for `using namespace WebCore` outside of the namespace block in a cpp file
Product: WebKit Reporter: Simon Fraser (smfr) <simon.fraser>
Component: Tools / TestsAssignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal CC: webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: Safari 16   
Hardware: Unspecified   
OS: Unspecified   

Description Simon Fraser (smfr) 2023-09-19 17:06:38 PDT
Bad:
using namespace WebCore;
namespace WebKit {
...
}

Good:
namespace WebKit {
using namespace WebCore;
...
}
Comment 1 Radar WebKit Bug Importer 2023-09-26 17:07:14 PDT
<rdar://problem/116091205>