Bug 261785 - check-webkit-style should check for `using namespace WebCore` outside of the namespace block in a cpp file
Summary: check-webkit-style should check for `using namespace WebCore` outside of the ...
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: Tools / Tests (show other bugs)
Version: Safari 16
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords: InRadar
Depends on:
Blocks:
 
Reported: 2023-09-19 17:06 PDT by Simon Fraser (smfr)
Modified: 2023-09-26 17:07 PDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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>