Started writing a C++ STL implementation.
[xlqstl.git] / string.cxx
blobb7c6eb64e7a99df6e3a97df09e68d888b909d411
1 #include "string"
2 #include "stdexcept"
4 namespace std {
6 template <class T>
7 void basic_string<T>::throw_exc()
9 throw out_of_range("string index out of range");