<br><br><div class="gmail_quote">2011/11/14 Rafaël Carré <span dir="ltr"><<a href="mailto:funman@videolan.org">funman@videolan.org</a>></span><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Yeah.<br>
<br>
And since the declaration in my unix headers don't return const I<br>
committed a workaround which work for both: see a9aa594f5<br></blockquote><div> Yes, I'v seen it, but now compilation under Visual Studio is broken :) But don't worry, I'll make patch for it.<br><br></div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

<div class="im"><br>
> > About the "!=0" addition I think it would be clearer if you add a "!!"<br>
> > in front of the variable to make sure it is 0 or 1.<br>
> > Does that fix the warning?<br>
> ><br>
> No, it is not work. I try to eliminate<br>
</div>> *<br>
<div class="im">> warning C4800: 'int' : forcing value to bool 'true' or 'false' (performance<br>
</div>> warning)*<br>
<div class="im">><br>
> But '!' (and therefore '!!') need bool argument, so it is not eliminate<br>
> problem.<br>
<br>
</div>Weird, we have a lot of pointers comparison using !<br>
<br>
like: pointer = malloc(1234);<br>
if (!pointer) ....<br></blockquote><div>It is not same thing. Warning C4800 corresponds only to assignment of int to bool variable:<br>bool b = (int)10;<br>but "if" not requare bool.<br><br><span id="result_box" class="short_text" lang="en"><span class="hps">In addition</span></span>, I think this warning is specific only to Visual C++, not gcc, but I am not shure.<br>
<br> </div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div class="im"><br>
> So the more correct way (in C++) make bool from int, is compare it with<br>
> zero.<br></div></blockquote></div><br>