Usermode/libc++ - Many fixes and cleanups
[tpg/acess2.git] / Usermode / Libraries / libc++.so_src / string.cc
1 /*
2  * Acess2 C++ Library
3  * - By John Hodge (thePowersGang)
4  *
5  * exceptions.cc
6  * - ::std::exception and friends
7  */
8 #include <string>
9 #include <stdexcept>
10
11 void ::std::_throw_out_of_range(const char *message)
12 {
13         throw ::std::out_of_range( ::std::string(message) );
14 }
15

UCC git Repository :: git.ucc.asn.au