Update of /cvsroot/boost/boost/boost
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv4919/boost

Modified Files:
      Tag: RC_1_34_0
        multi_array.hpp 
Log Message:
merged from trunk to branch

Index: multi_array.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/multi_array.hpp,v
retrieving revision 1.32
retrieving revision 1.32.2.1
diff -u -d -r1.32 -r1.32.2.1
--- multi_array.hpp     7 Mar 2006 22:27:33 -0000       1.32
+++ multi_array.hpp     26 Jun 2006 06:49:50 -0000      1.32.2.1
@@ -42,9 +42,10 @@
 
       struct populate_index_ranges {
         multi_array_types::index_range
+        // RG: underscore on extent_ to stifle strange MSVC warning.
         operator()(multi_array_types::index base,
-                   multi_array_types::size_type extent) {
-          return multi_array_types::index_range(base,base+extent);
+                   multi_array_types::size_type extent_) {
+          return multi_array_types::index_range(base,base+extent_);
         }
       };
 
@@ -388,7 +389,8 @@
     gen_type ranges;
 
     for (int i=0; i != NumDims; ++i) {
-      ranges.ranges_[i] = typename gen_type::range(0,extents[i]);
+      typedef typename gen_type::range range_type;
+      ranges.ranges_[i] = range_type(0,extents[i]);
     }
     
     return this->resize(ranges);


Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs

Reply via email to