/* * $Rev: 5266 $ * Author: Jesse Perla (c) 2010 * Use, modification and distribution are subject to the * Boost Software License, Version 1.0. (See accompanying file * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) */ #define BOOST_TEST_MODULE test_boost_ublas_patches #include #include using namespace boost::numeric::ublas; BOOST_AUTO_TEST_CASE( test_size_0_bounded_vector ) { //Creating a zero size array. This failed on MSVC since it uses a zero-sized array, which is apparently non-standard. bounded_vector v; }