<div dir="ltr">(CC-ing our local warnings expert...)</div><div class="gmail_extra"><br><br><div class="gmail_quote">On Mon, Mar 10, 2014 at 11:13 AM, Marshall Clow <span dir="ltr"><<a href="mailto:mclow.lists@gmail.com" target="_blank">mclow.lists@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">As I was working on a libc++ issue (<br>
2263. Comparing iterators and allocator pointers with different const-character), if anyone cares, I wrote the following test program:<br>
<br>
#include <string><br>
<br>
int main() {<br>
  std::string::iterator it;<br>
  std::string::const_iterator cit;<br>
<br>
  it == cit;<br>
  it != cit;<br>
  it < cit;<br>
  it <= cit;<br>
  it > cit;<br>
  it >= cit;<br>
}<br>
<br>
I wanted to make sure that these were all legal comparisons using libc++ (and they are).<br>
I kind of expected some compiler warnings about “unused results” or something.<br>
<br>
What I didn’t expect was to get _two_ warnings. I figured either zero or some multiple of six.<br>
<br>
Apparently clang doesn’t like it if you don’t use the result of == or !=, but is perfectly happy with ignoring the results of >, >=, <, <=.<br>
<br>
Why is that?<br>
<br>
— Marshall<br>
<br>
<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
</blockquote></div><br></div>