Updated tests and jamfiles to reflect the changed testing headers location.

This commit is contained in:
Andrey Semashev
2014-09-04 23:39:44 +04:00
parent 332389f50e
commit cddc55a6c4
92 changed files with 183 additions and 182 deletions

View File

@@ -20,10 +20,9 @@
#include <boost/mpl/sizeof.hpp>
#include <boost/mpl/apply.hpp>
#include <boost/mpl/aux_/test.hpp>
#include <boost/type_traits/is_same.hpp>
#include <boost/type_traits/is_float.hpp>
#include "test.hpp"
struct my
{
@@ -73,6 +72,6 @@ MPL_TEST_CASE()
// bind <-> lambda interaction
typedef lambda< less<_1,_2> >::type pred;
typedef bind2< pred, _1, int_<4> > f;
MPL_ASSERT(( apply_wrap1< f,int_<3> > ));
}