$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Douglas Gregor (gregod_at_[hidden])
Date: 2003-11-02 14:15:01
I've just applied this patch to boost/multi_array.hpp, which was missing some 
"template" keywords.
@@ -221,9 +221,9 @@
     // Build same-shape views of the two arrays
     typename
-      multi_array::array_view<NumDims>::type view_old = (*this)[old_idxes];
+      multi_array::BOOST_NESTED_TEMPLATE array_view<NumDims>::type view_old = 
(*this)[old_idxes];
     typename
-      multi_array::array_view<NumDims>::type view_new = new_array[new_idxes];
+      multi_array::BOOST_NESTED_TEMPLATE array_view<NumDims>::type view_new = 
new_array[new_idxes];
        Doug