annotate DEPENDENCIES/generic/include/boost/phoenix/statement/sequence.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 /*==============================================================================
Chris@16 2 Copyright (c) 2001-2010 Joel de Guzman
Chris@16 3 Copyright (c) 2010 Eric Niebler
Chris@16 4 Copyright (c) 2010 Thomas Heller
Chris@16 5
Chris@16 6 Distributed under the Boost Software License, Version 1.0. (See accompanying
Chris@16 7 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Chris@16 8 ==============================================================================*/
Chris@16 9
Chris@16 10 #ifndef BOOST_PHOENIX_STATEMENT_SEQUENCE_HPP
Chris@16 11 #define BOOST_PHOENIX_STATEMENT_SEQUENCE_HPP
Chris@16 12
Chris@16 13 #include <boost/phoenix/core/limits.hpp>
Chris@16 14 #include <boost/phoenix/core/expression.hpp>
Chris@16 15 #include <boost/phoenix/core/meta_grammar.hpp>
Chris@101 16 #include <boost/proto/operators.hpp> // Included to solve #5715
Chris@16 17
Chris@16 18 namespace boost { namespace phoenix
Chris@16 19 {
Chris@16 20 namespace expression
Chris@16 21 {
Chris@16 22 template <typename A0, typename A1>
Chris@16 23 struct sequence
Chris@16 24 : expr<proto::tag::comma, A0, A1>
Chris@16 25 {};
Chris@16 26 }
Chris@16 27
Chris@16 28 namespace rule
Chris@16 29 {
Chris@16 30 struct sequence
Chris@16 31 : expression::sequence<
Chris@16 32 meta_grammar
Chris@16 33 , meta_grammar
Chris@16 34 >
Chris@16 35 {};
Chris@16 36 }
Chris@16 37
Chris@16 38 template <typename Dummy>
Chris@16 39 struct meta_grammar::case_<proto::tag::comma, Dummy>
Chris@16 40 : enable_rule<rule::sequence, Dummy>
Chris@16 41 {};
Chris@16 42
Chris@16 43 }}
Chris@16 44
Chris@16 45 #endif