mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-10 10:27:40 +00:00
Minor inline fixes, start CAi
This commit is contained in:
@@ -13,9 +13,7 @@ public:
|
||||
single_ptr() : x0_ptr(nullptr) {}
|
||||
single_ptr(T* ptr) : x0_ptr(ptr) {}
|
||||
single_ptr(const single_ptr& other) : x0_ptr(other.x0_ptr) { other.x0_ptr = nullptr; }
|
||||
~single_ptr() {
|
||||
delete x0_ptr;
|
||||
}
|
||||
~single_ptr() { delete x0_ptr; }
|
||||
single_ptr& operator=(single_ptr& other) {
|
||||
if (&other == this) {
|
||||
return *this;
|
||||
|
||||
Reference in New Issue
Block a user