From f31e33befd47abbf0fd4d4d57f2d0df4893cefbc 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. --- 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 ) {