Fixed problems that emerged in list.
[xlqstl.git] / stdexcept.cxx
blob9e8455bbe1b98d9ae4de6c7a8ce3128e139463dd
1 #include "stdexcept"
3 namespace std {
5 logic_error::logic_error(const string &what_arg):
6 what_(what_arg)
10 logic_error::~logic_error() throw()
15 const char *logic_error::what() const throw()
17 return what_.c_str();
20 out_of_range::out_of_range(const string &what_arg):
21 logic_error(what_arg)