$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: rwgk_at_[hidden]
Date: 2007-12-12 00:39:46
Author: rwgk
Date: 2007-12-12 00:39:45 EST (Wed, 12 Dec 2007)
New Revision: 41986
URL: http://svn.boost.org/trac/boost/changeset/41986
Log:
undo revision 41404; see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34238
Text files modified: 
   trunk/libs/python/src/object/function.cpp |     9 ++-------                               
   1 files changed, 2 insertions(+), 7 deletions(-)
Modified: trunk/libs/python/src/object/function.cpp
==============================================================================
--- trunk/libs/python/src/object/function.cpp	(original)
+++ trunk/libs/python/src/object/function.cpp	2007-12-12 00:39:45 EST (Wed, 12 Dec 2007)
@@ -565,11 +565,7 @@
 }
 
 
-namespace detail
-/* Cannot be anonymous namespace:
-     http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34094
-     http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34229
- */
+namespace
 {
   struct bind_return
   {
@@ -614,8 +610,7 @@
     function_call(PyObject *func, PyObject *args, PyObject *kw)
     {
         PyObject* result = 0;
-        handle_exception(
-          detail::bind_return(result, static_cast<function*>(func), args, kw));
+        handle_exception(bind_return(result, static_cast<function*>(func), args, kw));
         return result;
     }