Also added a pretty much untested and totally incomplete STL string type.
This commit is contained in:
23
bastl/include/stdexcept
Normal file
23
bastl/include/stdexcept
Normal file
@@ -0,0 +1,23 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#if !defined(BAD_APPLE_OS_STDEXCEPT_INCLUDED)
|
||||
#define BAD_APPLE_OS_STDEXCEPT_INCLUDED
|
||||
|
||||
#include "exception"
|
||||
|
||||
namespace std
|
||||
{
|
||||
class logic_error : public exception
|
||||
{
|
||||
private:
|
||||
|
||||
};
|
||||
|
||||
class out_of_range : public logic_error
|
||||
{
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
#endif // !defined(BAD_APPLE_OS_STDEXCEPT_INCLUDED)
|
||||
Reference in New Issue
Block a user