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 143160 - typo in gtk/gtkmm/treepath.h stops the build
typo in gtk/gtkmm/treepath.h stops the build
Status: RESOLVED DUPLICATE of bug 143150
Product: gtkmm
Classification: Bindings
Component: build
2.2
Other Linux
: High critical
: ---
Assigned To: gtkmm-forge
gtkmm-forge
Depends on:
Blocks:
 
 
Reported: 2004-05-25 22:06 UTC by Christian Götz
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Christian Götz 2004-05-25 22:06:06 UTC
./configure --prefix=/opt/gnome && make

$ gcc -v
Reading specs from /usr/lib/gcc/i686-pc-linux-gnu/3.4.0/specs
Configured with: ../gcc-3.4.0-20040416/configure --prefix=/usr --enable-shared
--enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu
--enable-languages=c,c++
Thread model: posix
gcc version 3.4.0 20040416 (prerelease)


i made a diff to fix that:
--- gtk/gtkmm/treepath.h.org    2004-05-25 21:04:19.186939760 +0200
+++ gtk/gtkmm/treepath.h        2004-05-25 21:00:38.840437520 +0200
@@ -294,7 +294,7 @@
 {
   // push_back() can't throw -- if it could, this code wouldn't be strongly
exception-safe.
   for(; pbegin != pend; ++pbegin)
-    this->push_back(*begin);
+    this->push_back(*pbegin);
 }
 
 template <class In> inline
Comment 1 Christian Götz 2004-05-26 07:28:19 UTC

*** This bug has been marked as a duplicate of 143150 ***