[Bug 748110] vtdec: fix build error with clang

GStreamer (GNOME Bugzilla) bugzilla at gnome.org
Sat Apr 25 05:43:36 PDT 2015


https://bugzilla.gnome.org/show_bug.cgi?id=748110

Ilya Konstantinov <ilya.konstantinov at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ilya.konstantinov at gmail.com

--- Comment #8 from Ilya Konstantinov <ilya.konstantinov at gmail.com> ---
This is intentional clang behavior. It's similar to the convention they have
for assignments in parentheses, where you get warnings for:

  if (foo = bar) // change to if ((foo = bar)) to suppress
  if ((foo == bar)) // change to if (foo == bar) to suppress

The provided suppression method is probably an attempt to be less cumbersome
than pragmas.

If anything, the clang bug is not taking the -weak_framework flag into account.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.
You are the assignee for the bug.


More information about the gstreamer-bugs mailing list