[Webkit-unassigned] [Bug 149839] [WinCairo] GStreamer compile errors.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Oct 6 08:56:32 PDT 2015


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

--- Comment #2 from Zan Dobersek <zan at falconsigh.net> ---
Comment on attachment 262511
  --> https://bugs.webkit.org/attachment.cgi?id=262511
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=262511&action=review

> Source/WebCore/platform/graphics/gstreamer/InbandTextTrackPrivateGStreamer.cpp:89
> -        [protector] { protector->notifyTrackOfSample(); });
> +        static_cast<std::function<void()>>(
> +            [protector] {
> +                protector->notifyTrackOfSample();
> +            }));

Just

    std::function<void ()>([protector] { ... })

should work, with no casts.

-- 
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/20151006/931c19e7/attachment.html>


More information about the webkit-unassigned mailing list