X-Git-Url: https://git.ucc.asn.au/?p=tpg%2Facess2.git;a=blobdiff_plain;f=Usermode%2FLibraries%2Flibc%2B%2B.so_src%2Fstring.cc;fp=Usermode%2FLibraries%2Flibc%2B%2B.so_src%2Fstring.cc;h=f063e3434b85141123a2f33fe231c8ccc3a25e4c;hp=0000000000000000000000000000000000000000;hb=845b6f9d90bb87b5e760e4d49aa93b0e003ab750;hpb=67a7fe2bb79eceaf10c572a99bd8345c4e81cf5b diff --git a/Usermode/Libraries/libc++.so_src/string.cc b/Usermode/Libraries/libc++.so_src/string.cc new file mode 100644 index 00000000..f063e343 --- /dev/null +++ b/Usermode/Libraries/libc++.so_src/string.cc @@ -0,0 +1,15 @@ +/* + * Acess2 C++ Library + * - By John Hodge (thePowersGang) + * + * exceptions.cc + * - ::std::exception and friends + */ +#include +#include + +void ::std::_throw_out_of_range(const char *message) +{ + throw ::std::out_of_range( ::std::string(message) ); +} +