Test
This commit is contained in:
@@ -8,9 +8,12 @@
|
||||
|
||||
namespace ehs
|
||||
{
|
||||
typedef bool (*GcLogic)(BaseObj*);
|
||||
|
||||
class GarbageCollector
|
||||
{
|
||||
private:
|
||||
static Vector<GcLogic>* logic;
|
||||
static Vector<BaseObj*> garbage;
|
||||
static UInt_64 max;
|
||||
static Thread thread;
|
||||
|
@@ -19,13 +19,13 @@ namespace ehs
|
||||
|
||||
explicit Type(const Char_8* id);
|
||||
|
||||
Type(Type&& type) noexcept = default;
|
||||
Type(Type&& type) noexcept;
|
||||
|
||||
Type(const Type& type) = default;
|
||||
Type(const Type& type);
|
||||
|
||||
Type& operator=(Type&& type) noexcept = default;
|
||||
Type& operator=(Type&& type) noexcept;
|
||||
|
||||
Type& operator=(const Type& type) = default;
|
||||
Type& operator=(const Type& type);
|
||||
|
||||
bool operator==(const Type& type) const;
|
||||
|
||||
|
Reference in New Issue
Block a user