<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - REGRESSION(r195661): [GTK] Scrollbar tests crashing after overlay scrollbar groundwork"
   href="https://bugs.webkit.org/show_bug.cgi?id=153695#c15">Comment # 15</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED FIXED - REGRESSION(r195661): [GTK] Scrollbar tests crashing after overlay scrollbar groundwork"
   href="https://bugs.webkit.org/show_bug.cgi?id=153695">bug 153695</a>
              from <span class="vcard"><a class="email" href="mailto:mcatanzaro&#64;igalia.com" title="Michael Catanzaro &lt;mcatanzaro&#64;igalia.com&gt;"> <span class="fn">Michael Catanzaro</span></a>
</span></b>
        <pre>(In reply to <a href="show_bug.cgi?id=153695#c13">comment #13</a>)
<span class="quote">&gt; But this code triggers only -Wnon-virtual-dtor:
&gt; 
&gt; int main()
&gt; {
&gt;   auto a = std::make_unique&lt;B&gt;();
&gt; }</span >

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

int main()
{
  auto a = std::unique_ptr&lt;A&gt;(new B);
}

(It still triggers only -Wnon-virtual-dtor, so my point is sound.)</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>