On Mon, Feb 19, 2018 at 03:06:40PM +0100, Christophe de Dinechin wrote:
>
>
> > On 19 Feb 2018, at 13:24, Christophe Fergeau wrote:
> >
> > On Fri, Feb 16, 2018 at 04:23:06PM +0100, Christophe de Dinechin wrote:
> >> From: Christophe de Dinechin
> >>
> >> Without this, GCC complains about sig
> On 19 Feb 2018, at 13:24, Christophe Fergeau wrote:
>
> On Fri, Feb 16, 2018 at 04:23:06PM +0100, Christophe de Dinechin wrote:
>> From: Christophe de Dinechin
>>
>> Without this, GCC complains about signed / unsigned comparisons:
>>
>> mjpeg-fallback.cpp:121:24: warning: comparison betwee
On Fri, Feb 16, 2018 at 04:23:06PM +0100, Christophe de Dinechin wrote:
> From: Christophe de Dinechin
>
> Without this, GCC complains about signed / unsigned comparisons:
>
> mjpeg-fallback.cpp:121:24: warning: comparison between signed and unsigned
> integer expressions [-Wsign-compare]
>
>
> From: Christophe de Dinechin
>
> Without this, GCC complains about signed / unsigned comparisons:
>
> mjpeg-fallback.cpp:121:24: warning: comparison between signed and unsigned
> integer expressions [-Wsign-compare]
> if (win_info.width != last_width || win_info.height != last_height)
From: Christophe de Dinechin
Without this, GCC complains about signed / unsigned comparisons:
mjpeg-fallback.cpp:121:24: warning: comparison between signed and unsigned
integer expressions [-Wsign-compare]
if (win_info.width != last_width || win_info.height != last_height) {
~