[Webkit-unassigned] [Bug 153695] REGRESSION(r195661): [GTK] Scrollbar tests crashing after overlay scrollbar groundwork

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Mar 5 05:24:37 PST 2016


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

--- Comment #15 from Michael Catanzaro <mcatanzaro at igalia.com> ---
(In reply to comment #13)
> But this code triggers only -Wnon-virtual-dtor:
> 
> int main()
> {
>   auto a = std::make_unique<B>();
> }

Well that's a bad example because that's not polymorphic, the right example is:

int main()
{
  auto a = std::unique_ptr<A>(new B);
}

(It still triggers only -Wnon-virtual-dtor, so my point is sound.)

-- 
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/20160305/4f823297/attachment-0001.html>


More information about the webkit-unassigned mailing list