Gtkmm-forge Digest, Vol 7, Issue 1



Send Gtkmm-forge mailing list submissions to
	gtkmm-forge lists sourceforge net

To subscribe or unsubscribe via the World Wide Web, visit
	https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
or, via email, send a message with subject or body 'help' to
	gtkmm-forge-request lists sourceforge net

You can reach the person managing the list at
	gtkmm-forge-owner lists sourceforge net

When replying, please edit your Subject line so it is more specific
than "Re: Contents of Gtkmm-forge digest..."


gtkmm-forge is the mailing list that receives gtkmm bug reports from bugzilla.  A daily digest is sent to gtkmm-main, to encourage people to help fixing the bugs. Do not try to unsubscribe gtkmm-forge from gtkmm-list.


Today's Topics:

   1. [Bug 321990] Error building	libgnomevfs/libgnomevfsmm/uri.cc
      with SGI, Tru64 UNIX,	Sun C++ compilers (gnomemm (bugzilla.gnome.org))


----------------------------------------------------------------------

Message: 1
Date: Sat,  2 Dec 2006 15:46:12 +0000 (UTC)
From: "gnomemm (bugzilla.gnome.org)"
	<bugzilla-daemon bugzilla gnome org>
Subject: [gtkmm bugzilla] [Bug 321990] Error building
	libgnomevfs/libgnomevfsmm/uri.cc with SGI, Tru64 UNIX,	Sun C++
	compilers
To: gtkmm-forge lists sourceforge net
Message-ID: <20061202154612 873176C411A box gnome org>
Content-Type: text/plain; charset=utf-8

Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=321990

  gnomemm | gnome-vfsmm | Ver: 2.10


The Written Word changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |Axel Thimm ATrpms net




------- Comment #8 from The Written Word  2006-12-02 15:44 UTC -------
Some updates on these two bugs (static_cast and Glib::unwrap ambiguities):

o static_cast needs to be removed at quite a lot of other places, too. I didn't
  check if these were all enum related casts.

o The overload ambiguity bug in the Sun compiler has been filed as

  4886310 Overloading ambiguity error with usage of template function with
const vector

  Unfortunately I don't have access to the bug description and activity, but it
  is supposedly fixed in the latest compiler patches. Still a workaround is
  needed for the other broken compilers as well.

o The workaround is to explicitly instantiate the function template with the
  proper argument. There seems to be another bug in the game requiring full 
  Namespace resolution. For example:

 bool Uri::equal(const Glib::RefPtr<const Uri>& uri) const
 {
-  return gnome_vfs_uri_equal(const_cast<GnomeVFSURI*>(gobj()),
Glib::unwrap(uri));
+  return gnome_vfs_uri_equal(const_cast<GnomeVFSURI*>(gobj()),
Glib::unwrap<Gnome::Vfs::Uri>(uri));
 }

  Perhaps some m4 conversion tricks would be able to get the template parameter
  as an argument to Glib::unwrap.

o glibmm has similar Glib::unwrap (indirect) issues, e.g. some header files
need
  to explicitely instanciate the proper template, too, to assist the compiler
in
  its choice.

When I get it to build on the remaining platforms, I can post a patch here, but
it would be against the gtkmmproc generated files.


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email



------------------------------

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV

------------------------------

_______________________________________________
Gtkmm-forge mailing list
Gtkmm-forge lists sourceforge net
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge


End of Gtkmm-forge Digest, Vol 7, Issue 1
*****************************************



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]