mirror of
https://github.com/boostorg/spirit.git
synced 2026-01-19 04:42:11 +00:00
if (str[0] == 'q' || str[0] == 'Q')
break;
To
if (str.empty() || str[0] == 'q' || str[0] == 'Q')
break;
[SVN r27813]
80 lines
1.9 KiB
C++
80 lines
1.9 KiB
C++
/*=============================================================================
|
|
Copyright (C) 1999-2003 Jaakko Järvi
|
|
Copyright (c) 2003 Joel de Guzman
|
|
|
|
Use, modification and distribution is subject to 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/spirit/fusion/sequence/tuple.hpp>
|
|
#include <boost/spirit/fusion/sequence/get.hpp>
|
|
#include <boost/spirit/fusion/sequence/tie.hpp>
|
|
#include <boost/spirit/fusion/sequence/make_tuple.hpp>
|
|
|
|
namespace
|
|
{
|
|
// something to prevent warnings for unused variables
|
|
template<class T> void dummy(const T&) {}
|
|
|
|
// no public default constructor
|
|
class foo
|
|
{
|
|
public:
|
|
|
|
explicit foo(int v) : val(v) {}
|
|
|
|
bool operator==(const foo& other) const
|
|
{
|
|
return val == other.val;
|
|
}
|
|
|
|
private:
|
|
|
|
foo() {}
|
|
int val;
|
|
};
|
|
}
|
|
|
|
int
|
|
main()
|
|
{
|
|
using namespace boost::fusion;
|
|
|
|
int a;
|
|
char b;
|
|
foo c(5);
|
|
|
|
tie(a, b, c) = make_tuple(2, 'a', foo(3));
|
|
BOOST_TEST(a == 2);
|
|
BOOST_TEST(b == 'a');
|
|
BOOST_TEST(c == foo(3));
|
|
|
|
tie(a, ignore, c) = make_tuple((short int)5, false, foo(5));
|
|
BOOST_TEST(a == 5);
|
|
BOOST_TEST(b == 'a');
|
|
BOOST_TEST(c == foo(5));
|
|
|
|
// testing assignment from std::pair
|
|
int i, j;
|
|
tie (i, j) = std::make_pair(1, 2);
|
|
BOOST_TEST(i == 1 && j == 2);
|
|
|
|
tuple<int, int, float> ta;
|
|
|
|
#ifdef E11
|
|
ta = std::make_pair(1, 2); // should fail, tuple is of length 3, not 2
|
|
#endif
|
|
|
|
dummy(ta);
|
|
|
|
// ties cannot be rebound
|
|
int d = 3;
|
|
tuple<int&> ti(a);
|
|
BOOST_TEST(&get<0>(ti) == &a);
|
|
ti = tuple<int&>(d);
|
|
BOOST_TEST(&get<0>(ti) == &a);
|
|
|
|
return boost::report_errors();
|
|
}
|