Update of /cvsroot/boost/boost/boost
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25066/boost
Modified Files:
multi_array.hpp
Log Message:
fixed MSVC 6.5/7.0 choking on a constructor involving a dependent typename
Index: multi_array.hpp
===================================================================
RCS file: /cvsroot/boost/boost/boost/multi_array.hpp,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- multi_array.hpp 10 Apr 2006 16:51:12 -0000 1.33
+++ multi_array.hpp 26 Jun 2006 06:20:30 -0000 1.34
@@ -389,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