[webkit-reviews] review granted: [Bug 21810] Remove use of static C++ objects that are destroyed at exit time (destructors) : [Attachment 24896] Removes many exit-time destructors

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Nov 4 15:33:49 PST 2008


Darin Adler <darin at apple.com> has granted Greg Bolsinga <bolsinga at apple.com>'s
request for review:
Bug 21810: Remove use of static C++ objects that are destroyed at exit time
(destructors)
https://bugs.webkit.org/show_bug.cgi?id=21810

Attachment 24896: Removes many exit-time destructors
https://bugs.webkit.org/attachment.cgi?id=24896&action=edit

------- Additional Comments from Darin Adler <darin at apple.com>
> -    static ApplicationCacheStorage storage;
> +    static ApplicationCacheStorage& storage = *new
ApplicationCacheStorage();

No need for the parens here.

r=me


More information about the webkit-reviews mailing list