<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [X11] Add XUniquePtr and XUniqueResource to automatically free X resources"
   href="https://bugs.webkit.org/show_bug.cgi?id=144521#c9">Comment # 9</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [X11] Add XUniquePtr and XUniqueResource to automatically free X resources"
   href="https://bugs.webkit.org/show_bug.cgi?id=144521">bug 144521</a>
              from <span class="vcard"><a class="email" href="mailto:zan&#64;falconsigh.net" title="Zan Dobersek &lt;zan&#64;falconsigh.net&gt;"> <span class="fn">Zan Dobersek</span></a>
</span></b>
        <pre>Comment on <span class=""><a href="attachment.cgi?id=252487&amp;action=diff" name="attach_252487" title="Try to fix EFL build">attachment 252487</a> <a href="attachment.cgi?id=252487&amp;action=edit" title="Try to fix EFL build">[details]</a></span>
Try to fix EFL build

View in context: <a href="https://bugs.webkit.org/attachment.cgi?id=252487&amp;action=review">https://bugs.webkit.org/attachment.cgi?id=252487&amp;action=review</a>

<span class="quote">&gt; Source/WebCore/PlatformEfl.cmake:200
&gt; +    platform/graphics/x11/XUnique.cpp</span >

Consider splitting XUnique.h into XUniquePtr.h and XUniqueResource.h, and renaming XUnique.cpp to XUniqueResource.cpp.

<span class="quote">&gt; Source/WebCore/platform/graphics/x11/XUnique.h:124
&gt; +    long unsigned release() { long unsigned resource = m_resource; m_resource = 0; return resource; }</span >

Use std::exchange() here. (It's C++14, but there's an implementation in StdLibExtras.h.)

<span class="quote">&gt; Source/WebCore/platform/graphics/x11/XUnique.h:126
&gt; +    void reset(long unsigned resource = 0)</span >

Instead of `resource.reset()`, I'd prefer resource = nullptr;
If you consider it, it possible to implement by overloading the assignment operator:

    XUniqueResource&amp; operator=(std::nullptr_t) { ... }

<span class="quote">&gt; Source/WebCore/platform/graphics/x11/XUnique.h:164
&gt; +typedef XUniqueResource&lt;XResource::Colormap&gt; XUniqueColormap;
&gt; +#if PLATFORM(GTK)
&gt; +typedef XUniqueResource&lt;XResource::Damage&gt; XUniqueDamage;
&gt; +#endif
&gt; +typedef XUniqueResource&lt;XResource::Pixmap&gt; XUniquePixmap;
&gt; +typedef XUniqueResource&lt;XResource::Window&gt; XUniqueWindow;
&gt; +#if USE(GLX)
&gt; +typedef XUniqueResource&lt;XResource::GLXPbuffer&gt; XUniqueGLXPbuffer;
&gt; +typedef XUniqueResource&lt;XResource::GLXPixmap&gt; XUniqueGLXPixmap;
&gt; +#endif
&gt; +
&gt; +// Give a name also to these XUniquePtr to avoid having to use the internal struct names (_XGC, __GLXcontextRec, ...).
&gt; +typedef XUniquePtr&lt;_XGC&gt; XUniqueGC;
&gt; +#if USE(GLX)
&gt; +typedef XUniquePtr&lt;__GLXcontextRec&gt; XUniqueGLXContext;
&gt; +#endif</span >

Use type aliases:
using XUniqueWhatever = XUniqueHandler&lt;Whatever&gt;;</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>