Fixed problems that emerged in list.
[xlqstl.git] / exception
blob3898487c1f9527f78d6444bfe61a913b2132f2ae
1 // vi:ft=cpp
2 #ifndef _STL_EXCEPTION_H
3 #define _STL_EXCEPTION_H
5 namespace std {
7 struct exception {
8     exception() throw();
9     exception(const exception &) throw();
10     exception &operator = (const exception &) throw();
11     virtual ~exception() throw();
12     virtual const char *what() const throw();
17 #endif