From e63bf9e4e304b8d027815ce5d3c1c0bbd724beb5 Mon Sep 17 00:00:00 2001 From: Gunter Winkler Date: Tue, 6 Oct 2009 21:57:57 +0000 Subject: [PATCH] see #3449: introduce new free functions to access matrix/vector properties (Incomplete) * added error message when BOOST_UBLAS_NO_NESTED_CLASS_RELATION is defined because the free funtions will not work here. svn path=/trunk/libs/numeric/ublas/; revision=56621 --- test/begin_end.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/begin_end.cpp b/test/begin_end.cpp index d29d24d7..db4d8246 100644 --- a/test/begin_end.cpp +++ b/test/begin_end.cpp @@ -18,6 +18,9 @@ static const double TOL(1.0e-5); ///< Used for comparing two real numbers. +#ifdef BOOST_UBLAS_NO_NESTED_CLASS_RELATION +#error "sorry this feature is not supported by your compiler" +#endif BOOST_UBLAS_TEST_DEF( test_vector_iteration ) {