]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/spirit/home/x3/support/traits/value_traits.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / spirit / home / x3 / support / traits / value_traits.hpp
1 /*=============================================================================
2 Copyright (c) 2001-2014 Joel de Guzman
3 Copyright (c) 2001-2011 Hartmut Kaiser
4 http://spirit.sourceforge.net/
5
6 Distributed under the Boost Software License, Version 1.0. (See accompanying
7 file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
8 =============================================================================*/
9 #if !defined(BOOST_SPIRIT_X3_VALUE_TRAITS_MAY_07_2013_0203PM)
10 #define BOOST_SPIRIT_X3_VALUE_TRAITS_MAY_07_2013_0203PM
11
12 namespace boost { namespace spirit { namespace x3 { namespace traits
13 {
14 template <typename T, typename Enable = void>
15 struct value_initialize
16 {
17 static T call()
18 {
19 return {};
20 }
21 };
22 }}}}
23
24 #endif