Moved bastl into target/_any folder.

This commit is contained in:
2024-02-02 00:25:32 +01:00
parent 9b9d5ade09
commit 99b1252f5d
32 changed files with 3 additions and 3 deletions

View 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)