to_string.hpp 714 B

12345678910111213141516171819202122232425262728293031
  1. //Copyright (c) 2008-2016 Emil Dotchevski and Reverge Studios, Inc.
  2. //Distributed under the Boost Software License, Version 1.0. (See accompanying
  3. //file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef UUID_2812944066B011E29F616DCB6188709B
  5. #define UUID_2812944066B011E29F616DCB6188709B
  6. #include <boost/exception/to_string.hpp>
  7. namespace
  8. boost
  9. {
  10. namespace
  11. qvm
  12. {
  13. namespace
  14. qvm_to_string_detail
  15. {
  16. template <class T>
  17. std::string
  18. to_string( T const & x )
  19. {
  20. using boost::to_string;
  21. return to_string(x);
  22. }
  23. }
  24. }
  25. }
  26. #endif