summaryrefslogtreecommitdiff
path: root/boost/spirit/home/x3/operator/detail/sequence.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/spirit/home/x3/operator/detail/sequence.hpp')
-rw-r--r--boost/spirit/home/x3/operator/detail/sequence.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/boost/spirit/home/x3/operator/detail/sequence.hpp b/boost/spirit/home/x3/operator/detail/sequence.hpp
index 9d3fe5c992..3ac21b61c9 100644
--- a/boost/spirit/home/x3/operator/detail/sequence.hpp
+++ b/boost/spirit/home/x3/operator/detail/sequence.hpp
@@ -304,11 +304,11 @@ namespace boost { namespace spirit { namespace x3 { namespace detail
, Context const& context, RContext& rcontext, Attribute& attr
, AttributeCategory)
{
- typedef typename Parser::left_type Left;
- typedef typename Parser::right_type Right;
- typedef partition_attribute<Left, Right, Attribute, Context> partition;
- typedef typename partition::l_pass l_pass;
- typedef typename partition::r_pass r_pass;
+ using Left = typename Parser::left_type;
+ using Right = typename Parser::right_type;
+ using partition = partition_attribute<Left, Right, Attribute, Context>;
+ using l_pass = typename partition::l_pass;
+ using r_pass = typename partition::r_pass;
typename partition::l_part l_part = partition::left(attr);
typename partition::r_part r_part = partition::right(attr);