2
0
mirror of https://github.com/boostorg/phoenix.git synced 2026-02-19 02:32:09 +00:00

Changes from release 3.2.0

This commit is contained in:
John Fletcher
2015-03-24 21:33:13 +00:00
parent 2c44144df6
commit 6eb5f5985f
3 changed files with 6 additions and 6 deletions

View File

@@ -45,10 +45,10 @@ int main()
BOOST_TEST(last(ll2)() == 5);
BOOST_TEST(last(lll2)() == 10);
BOOST_TEST(length(lll2)() == 9);
BOOST_TEST(at(even4,3)() == 8);
BOOST_TEST(at(odd4,2)() == 7);
BOOST_TEST(at(itersome,3)() == -3);
BOOST_TEST(at(repeatsome,3)() == 1);
BOOST_TEST(at_(even4,3)() == 8);
BOOST_TEST(at_(odd4,2)() == 7);
BOOST_TEST(at_(itersome,3)() == -3);
BOOST_TEST(at_(repeatsome,3)() == 1);
return boost::report_errors();
}