Revert "Merge pull request #11 from Lastique/modularization"

This reverts commit a9a1eddba8, reversing
changes made to d6bc9845ba.
This commit is contained in:
K. Noel Belcourt
2014-09-19 18:55:00 -06:00
parent a30e4a49a8
commit 6a0f617a6c
429 changed files with 248 additions and 314 deletions
+2 -2
View File
@@ -16,13 +16,13 @@
#include <boost/mpl/list_c.hpp>
#include <boost/mpl/less.hpp>
#include <boost/mpl/int.hpp>
#include "test.hpp"
#include <boost/mpl/aux_/test.hpp>
MPL_TEST_CASE()
{
typedef list_c<int,1,2,3,3,3,5,8> numbers;
typedef lower_bound< numbers, int_<4> >::type iter;
MPL_ASSERT_RELATION( (mpl::distance< begin<numbers>::type,iter >::value), ==, 5 );
MPL_ASSERT_RELATION( deref<iter>::type::value, ==, 5 );
}