Boost.MultiArray disambiguated calls to equal functions in the unit tests. These became ambiguous due to changes in Boost.Range.

[SVN r61441]
This commit is contained in:
Neil Groves
2010-04-20 21:56:33 +00:00
parent f6c15771e2
commit 3e2d5cb786

View File

@@ -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; });
}
}
}