Ticket #3074: fusion.diff

File fusion.diff, 2.0 KB (added by Richard Webb <richard.webb@…>, 13 years ago)
  • libs/fusion/test/sequence/adapt_assoc_struct.cpp

     
    5757{
    5858    using namespace boost::fusion;
    5959    using namespace boost;
    60     using namespace std;
     60    //using namespace std;
    6161
    6262    std::cout << tuple_open('[');
    6363    std::cout << tuple_close(']');
  • libs/fusion/test/sequence/cons.cpp

     
    2525main()
    2626{
    2727    using namespace boost::fusion;
     28    namespace bf = boost::fusion;
    2829    using boost::is_same;
    2930
    3031    std::cout << tuple_open('[');
     
    3940            make_cons(1, make_cons(hello));
    4041
    4142        BOOST_TEST((*begin(ns) == 1));
    42         BOOST_TEST((*next(begin(ns)) == hello));
     43        BOOST_TEST((*bf::next(begin(ns)) == hello));
    4344
    4445        *begin(ns) += 1;
    45         *next(begin(ns)) += ' ';
     46        *bf::next(begin(ns)) += ' ';
    4647
    4748        BOOST_TEST((*begin(ns) == 2));
    48         BOOST_TEST((*next(begin(ns)) == hello + ' '));
     49        BOOST_TEST((*bf::next(begin(ns)) == hello + ' '));
    4950
    5051        for_each(ns, boost::lambda::_1 += ' ');
    5152
    5253        BOOST_TEST((*begin(ns) == 2 + ' '));
    53         BOOST_TEST((*next(begin(ns)) == hello + ' ' + ' '));
     54        BOOST_TEST((*bf::next(begin(ns)) == hello + ' ' + ' '));
    5455    }
    5556
    5657    {
  • libs/fusion/test/sequence/vector_n.cpp

     
    3030{
    3131    using namespace boost::fusion;
    3232    using namespace boost;
    33     using namespace std;
     33    using std::cout;
     34    using std::endl;
    3435
    3536    {
    3637        vector0 vec;