398579a251
+ added full support for member operator + added full support for std::iostream operator + implemented perfect forwarding for actor + adapted some test cases for "best-practice" + implemented variadic arguments for all actors based on phoenix/core/limits.h + added proper boost build handling + arity calculation tweak from Eric [SVN r63027]
30 lines
890 B
C++
30 lines
890 B
C++
/*=============================================================================
|
|
Copyright (c) 2001-2007 Joel de Guzman
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
==============================================================================*/
|
|
#include <boost/detail/lightweight_test.hpp>
|
|
#include <boost/phoenix/core.hpp>
|
|
#include <boost/phoenix/operator.hpp>
|
|
|
|
namespace phoenix = boost::phoenix;
|
|
|
|
int
|
|
main()
|
|
{
|
|
using phoenix::val;
|
|
|
|
{
|
|
BOOST_TEST(!(val(123) == 456)());
|
|
BOOST_TEST((val(123) != 456)());
|
|
BOOST_TEST(!(val(123) > 456)());
|
|
BOOST_TEST((val(123) < 456)());
|
|
BOOST_TEST(!(val(123) > 456)());
|
|
BOOST_TEST((val(123) <= 123)());
|
|
BOOST_TEST((val(123) >= 123)());
|
|
}
|
|
|
|
return boost::report_errors();
|
|
}
|