GNOME Bugzilla – Bug 142462
typo in gtkmm/treepath.h :
Last modified: 2004-12-22 21:47:04 UTC
install gcc-3.4 build a gtkmm application that includes teepath.h Result: || In file included from /usr/include/gtkmm-2.0/gtkmm/treestore.h:33, || /usr/include/gtkmm-2.0/gtkmm/treepath.h: In member function `void Gtk:: TreePath::append(In, In)': /usr/include/gtkmm-2.0/gtkmm/treepath.h|297| error: insufficient contextual information to determine type because void TreePath::append(In pbegin, In pend) { // push_back() can't throw -- if it could, this code wouldn't be strongly exception-safe. for(; pbegin != pend; ++pbegin) this->push_back(*begin); } should be: void TreePath::append(In pbegin, In pend) { // push_back() can't throw -- if it could, this code wouldn't be strongly exception-safe. for(; pbegin != pend; ++pbegin) this->push_back(*pbegin); }
Fixed in CVS. Thanks.
*** Bug 143150 has been marked as a duplicate of this bug. ***