Bug 121583 - Replace use of OwnArrayPtr<Foo> with std::unique_ptr<Foo[]> in JavaScriptCore
Summary: Replace use of OwnArrayPtr<Foo> with std::unique_ptr<Foo[]> in JavaScriptCore
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: New Bugs (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Sam Weinig
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-09-18 19:40 PDT by Sam Weinig
Modified: 2013-09-18 20:11 PDT (History)
0 users

See Also:


Attachments
Patch (14.40 KB, patch)
2013-09-18 19:56 PDT, Sam Weinig
andersca: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Sam Weinig 2013-09-18 19:40:27 PDT
Replace use of OwnArrayPtr<Foo> with std::unique_ptr<Foo[]> in JavaScriptCore
Comment 1 Sam Weinig 2013-09-18 19:56:19 PDT
Created attachment 212031 [details]
Patch
Comment 2 Anders Carlsson 2013-09-18 20:09:30 PDT
Comment on attachment 212031 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=212031&action=review

> Source/JavaScriptCore/runtime/SymbolTable.h:477
> +    // FIXME: Should this take a std::unique_ptr<SlowArgument[]>&&.

It shouldn't.
Comment 3 Sam Weinig 2013-09-18 20:11:00 PDT
Committed r156079: <http://trac.webkit.org/changeset/156079>