Project revived from Feb2017
[EroSomnia.git] / deps / boost_1_63_0 / boost / qvm / to_string.hpp
blob11fade6bd9234154a7bfbed8de661dba9cb55a70
1 //Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc.
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)
6 #ifndef UUID_2812944066B011E29F616DCB6188709B
7 #define UUID_2812944066B011E29F616DCB6188709B
9 #include <boost/exception/to_string.hpp>
11 namespace
12 boost
14 namespace
15 qvm
17 namespace
18 qvm_to_string_detail
20 template <class T>
21 std::string
22 to_string( T const & x )
24 using boost::to_string;
25 return to_string(x);
31 #endif