$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r71266 - trunk/boost/phoenix/core
From: thom.heller_at_[hidden]
Date: 2011-04-15 01:55:24
Author: theller
Date: 2011-04-15 01:55:19 EDT (Fri, 15 Apr 2011)
New Revision: 71266
URL: http://svn.boost.org/trac/boost/changeset/71266
Log:
[phoenix] fixed some gcc 4.4 hickups, added expected failures
Text files modified: 
   trunk/boost/phoenix/core/function_equal.hpp |     8 ++++----                                
   1 files changed, 4 insertions(+), 4 deletions(-)
Modified: trunk/boost/phoenix/core/function_equal.hpp
==============================================================================
--- trunk/boost/phoenix/core/function_equal.hpp	(original)
+++ trunk/boost/phoenix/core/function_equal.hpp	2011-04-15 01:55:19 EDT (Fri, 15 Apr 2011)
@@ -57,7 +57,7 @@
             }
         };
 
-        struct test;
+        struct function_equal_otherwise;
 
         struct function_equal_
             : proto::when<
@@ -73,14 +73,14 @@
                                 >
                             )
                         >
-                      , proto::otherwise<test(proto::_, proto::_state)>
+                      , proto::otherwise<function_equal_otherwise(proto::_, proto::_state)>
                     >
-                  , proto::call<phoenix::detail::test()>
+                  , proto::call<function_equal_otherwise()>
                 >
             >
         {};
 
-        struct test
+        struct function_equal_otherwise
             : proto::callable
         {
             typedef bool result_type;