Forgot to commit this file along with the other revisions allowing default

constructed multi_arrays


[SVN r18220]
This commit is contained in:
Ronald Garcia 2003-04-09 13:53:16 +00:00
parent e35e6102b7
commit 73698a7bc2

View File

@ -83,6 +83,11 @@ public:
typedef boost::detail::multi_array::multi_array_view<T,NDims> type;
};
explicit multi_array() :
super_type((T*)initial_base_) {
allocate_space();
}
template <class ExtentList>
explicit multi_array(ExtentList const& extents) :
super_type((T*)initial_base_,extents) {