VS2010でMultiArray::resize()が使えない?


VS2010 beta2で次のコードがコンパイルエラーになります.
VS2008 EEだと通るんですけどね.

#include <boost/multi_array.hpp>

int main(){

	boost::multi_array<int, 2> ary(boost::extents[1][2]);
	ary.resize(boost::extents[2][3]);

}

error C2665: 'std::_Copy' : none of the 2 overloads could convert all the argument types c:\program files\microsoft visual studio 10.0\vc\include\xutility 2216


まぁエラー内容は教えてくれている通りですけど.