This is the mail archive of the
libstdc++@sourceware.cygnus.com
mailing list for the libstdc++ project.
stl_deque.h:818: warning: comparison between signed and unsigned
- To: libstdc++@sourceware.cygnus.com
- Subject: stl_deque.h:818: warning: comparison between signed and unsigned
- From: Wim Yedema <yedema@natlab.research.philips.com>
- Date: 25 Jun 1999 13:47:10 +0200
I get this message with gcc version gcc-2.95 19990524 (prerelease)
when compiling the following program "with g++ -c warning.cc -Wall"
// begin
#include <deque>
deque<int> foo;
void f(int index)
{
foo.erase(foo.begin()+index);
}
// end
It's nothing compared to the warnings I get with X :-)
but annoying anyway when it's the only warning I get.
Wim Yedema