]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/qvm/to_string.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / qvm / to_string.hpp
1 //Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc.
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 #ifndef UUID_2812944066B011E29F616DCB6188709B
7 #define UUID_2812944066B011E29F616DCB6188709B
8
9 #include <boost/exception/to_string.hpp>
10
11 namespace
12 boost
13 {
14 namespace
15 qvm
16 {
17 namespace
18 qvm_to_string_detail
19 {
20 template <class T>
21 std::string
22 to_string( T const & x )
23 {
24 using boost::to_string;
25 return to_string(x);
26 }
27 }
28 }
29 }
30
31 #endif