[Webkit-unassigned] [Bug 156713] [Win][IndexedDB] Fix build errors.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Apr 19 14:12:26 PDT 2016


https://bugs.webkit.org/show_bug.cgi?id=156713

--- Comment #9 from peavo at outlook.com ---
(In reply to comment #4)
> Comment on attachment 276667 [details]
> Patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=276667&action=review
> 
> cool!
> 
> > Source/WebCore/Modules/indexeddb/server/MemoryBackingStoreTransaction.cpp:44
> > -    return std::make_unique<MemoryBackingStoreTransaction>(backingStore, info);
> > +    return std::unique_ptr<MemoryBackingStoreTransaction>(new MemoryBackingStoreTransaction(backingStore, info));
> 
> This shouldn't be needed.
> 

I am afraid I didn't find a better way to fix these compile errors.
The main problem seems to be that MSVC does not accept that std::make_unique is declared as a friend of a class.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160419/1db5f01f/attachment-0001.html>


More information about the webkit-unassigned mailing list