2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-14 01:02:16 +00:00

removed precheck for zero size range

svn path=/trunk/boost/boost/numeric/ublas/; revision=24346
This commit is contained in:
Michael Stevens
2004-08-08 17:33:39 +00:00
parent 791af6543d
commit 6f9b4ddcec

View File

@@ -950,7 +950,6 @@ namespace boost { namespace numeric { namespace ublas {
BOOST_UBLAS_INLINE
range (size_type start, size_type stop):
start_ (start), size_ (stop - start) {
BOOST_UBLAS_CHECK (start <= stop, bad_size ());
}
BOOST_UBLAS_INLINE