After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 142462 - typo in gtkmm/treepath.h :
typo in gtkmm/treepath.h :
Status: RESOLVED FIXED
Product: gtkmm
Classification: Bindings
Component: general
2.2
Other Linux
: Normal normal
: ---
Assigned To: gtkmm-forge
gtkmm-forge
: 143150 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2004-05-13 15:03 UTC by Andreas Pokorny
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Andreas Pokorny 2004-05-13 15:03:56 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);
 }
Comment 1 Daniel Elstner 2004-05-13 15:17:30 UTC
Fixed in CVS.  Thanks.
Comment 2 Murray Cumming 2004-05-26 08:45:23 UTC
*** Bug 143150 has been marked as a duplicate of this bug. ***