$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: eric_at_[hidden]
Date: 2007-11-12 17:07:00
Author: eric_niebler
Date: 2007-11-12 17:06:59 EST (Mon, 12 Nov 2007)
New Revision: 41045
URL: http://svn.boost.org/trac/boost/changeset/41045
Log:
fix oops
Text files modified: 
   branches/proto/v3/libs/xpressive/proto3/test/examples.cpp |    13 -------------                           
   1 files changed, 0 insertions(+), 13 deletions(-)
Modified: branches/proto/v3/libs/xpressive/proto3/test/examples.cpp
==============================================================================
--- branches/proto/v3/libs/xpressive/proto3/test/examples.cpp	(original)
+++ branches/proto/v3/libs/xpressive/proto3/test/examples.cpp	2007-11-12 17:06:59 EST (Mon, 12 Nov 2007)
@@ -22,7 +22,6 @@
 using namespace transform;
 namespace mpl = boost::mpl;
 namespace fusion = boost::fusion;
-using boost::array;
 
 struct placeholder1 {};
 struct placeholder2 {};
@@ -177,18 +176,6 @@
     }
 };
 
-template<typename T>
-struct as_member
-{
-    typedef T type;
-};
-
-template<typename T, std::size_t N>
-struct as_member<T[N]>
-{
-    typedef array<T, N> type;
-};
-
 //[ AsArgList
 // This transform matches function invocations such as foo(1,'a',"b")
 // and transforms them into Fusion cons lists of their arguments. In this