]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/boost/boost/spirit/home/x3/operator/sequence.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / spirit / home / x3 / operator / sequence.hpp
index 467e131aee21decbb740ede6425f773e4986d7f5..9e6e1702fc9d1462fd23bfc89280454e8aae0a06 100644 (file)
@@ -7,11 +7,13 @@
 #if !defined(BOOST_SPIRIT_X3_SEQUENCE_JAN_06_2013_1015AM)
 #define BOOST_SPIRIT_X3_SEQUENCE_JAN_06_2013_1015AM
 
-#include <boost/spirit/home/x3/support/traits/attribute_of.hpp>
+#include <boost/spirit/home/x3/support/traits/attribute_of_binary.hpp>
 #include <boost/spirit/home/x3/core/parser.hpp>
 #include <boost/spirit/home/x3/operator/detail/sequence.hpp>
 #include <boost/spirit/home/x3/directive/expect.hpp>
 
+#include <boost/fusion/include/deque_fwd.hpp>
+
 namespace boost { namespace spirit { namespace x3
 {
     template <typename Left, typename Right>
@@ -66,7 +68,7 @@ namespace boost { namespace spirit { namespace x3 { namespace traits
 {
     template <typename Left, typename Right, typename Context>
     struct attribute_of<x3::sequence<Left, Right>, Context>
-        : x3::detail::attribute_of_sequence<Left, Right, Context> {};
+        : x3::detail::attribute_of_binary<fusion::deque, x3::sequence, Left, Right, Context> {};
 }}}}
 
 #endif