From 3e2d5cb7864d8e2698ce61351e624902a4ecf3b5 Mon Sep 17 00:00:00 2001 From: Neil Groves Date: Tue, 20 Apr 2010 21:56:33 +0000 Subject: [PATCH] Boost.MultiArray disambiguated calls to equal functions in the unit tests. These became ambiguous due to changes in Boost.Range. [SVN r61441] --- test/adaptor_test/strided2.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/adaptor_test/strided2.cpp b/test/adaptor_test/strided2.cpp index 4ac91f5..ee8b4d1 100644 --- a/test/adaptor_test/strided2.cpp +++ b/test/adaptor_test/strided2.cpp @@ -51,6 +51,9 @@ namespace boost reference += 4,8; BOOST_CHECK_EQUAL_COLLECTIONS( reference.begin(), reference.end(), z.begin(), z.end() ); + + // C++0x Lambda experiment + std::sort( v.begin(), v.end(), [](int l, int r) { return l < r; }); } } }