On Sat, 2009-04-25 at 09:51 +0200, François Legendre wrote:
> #include <iostream>
> #include <glibmm.h>
>
> int main() {
>
> Glib::ustring str("Hello") ;
> for ( Glib::ustring::iterator it = str.begin() ; it !=
> str.end() ; ++ it )
> ;
> for ( Glib::ustring::const_iterator it = str.begin() ; it !=
> str.end() ; ++ it )
> ;
> return 0 ;
> }
That doesn't work, because your str is not const, so it executes this
method:
iterator Glib::ustring::end();
instead of:
const_iterator Glib::ustring::end() const;
change in line 9:
for ( Glib::ustring::const_iterator it = str.begin() ; it !=
static_cast<Glib::ustring::const_iterator>(str.end()) ; ++ it )
Well, then it works for me.
Krzesimir Nowak
_______________________________________________
gtkmm-list mailing list
[email protected]
http://mail.gnome.org/mailman/listinfo/gtkmm-list