1

implement memory freeing and block merging

This commit is contained in:
churl
2022-05-08 19:42:32 +02:00
parent 0f1a45af47
commit 3a3af203e3
4 changed files with 174 additions and 19 deletions

View File

@ -3,6 +3,7 @@
class MyObj {
public:
MyObj() : value(5) {};
MyObj(unsigned int val) : value(val) {};
unsigned int value;
};