Bug 115569

Summary: Use NotNull tag for placement new in WebCore.
Product: WebKit Reporter: Andreas Kling <kling>
Component: WebKit Misc.Assignee: Andreas Kling <kling>
Status: RESOLVED FIXED    
Severity: Normal CC: cmarcelo, commit-queue, esprehn+autocc, glenn, kling, macpherson, menard
Priority: P2 Keywords: Performance
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch koivisto: review+

Description Andreas Kling 2013-05-03 12:22:34 PDT
"new (&foo) Bar;" is silly, we don't need to null check &foo. Let's use NotNull tags where we know everything's okay.
Comment 1 Andreas Kling 2013-05-03 12:23:52 PDT
Created attachment 200458 [details]
Patch
Comment 2 Antti Koivisto 2013-05-03 12:25:33 PDT
Comment on attachment 200458 [details]
Patch

r=me
Comment 3 Andreas Kling 2013-05-03 12:30:23 PDT
Committed r149529: <http://trac.webkit.org/changeset/149529>