]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/spirit/home/qi/detail/enable_lit.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / spirit / home / qi / detail / enable_lit.hpp
1 // Copyright (c) 2001-2011 Hartmut Kaiser
2 //
3 // Distributed under the Boost Software License, Version 1.0. (See accompanying
4 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5
6 #if !defined(BOOST_SPIRIT_QI_DETAIL_ENABLE_LIT_JAN_06_2011_0945PM)
7 #define BOOST_SPIRIT_QI_DETAIL_ENABLE_LIT_JAN_06_2011_0945PM
8
9 #if defined(_MSC_VER)
10 #pragma once
11 #endif
12
13 #include <boost/spirit/home/qi/domain.hpp>
14 #include <boost/spirit/home/qi/parser.hpp>
15 #include <boost/spirit/home/qi/meta_compiler.hpp>
16 #include <boost/spirit/home/qi/auxiliary/lazy.hpp>
17 #include <boost/fusion/include/vector.hpp>
18 #include <boost/spirit/home/support/string_traits.hpp>
19 #include <boost/spirit/home/support/common_terminals.hpp>
20
21 namespace boost { namespace spirit
22 {
23 // enables lazy lit(...) for qi
24 template <>
25 struct use_lazy_terminal<qi::domain, tag::lit, 1>
26 : mpl::true_ {};
27 }}
28
29 #endif
30