mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-27 14:26:04 +03:00
10 lines
210 B
Plaintext
10 lines
210 B
Plaintext
#include "util/Autorelease.hpp"
|
|
|
|
System_Autorelease::ScopedPool::ScopedPool() {
|
|
this->pool = [[NSAutoreleasePool alloc] init];
|
|
}
|
|
|
|
System_Autorelease::ScopedPool::~ScopedPool() {
|
|
[this->pool release];
|
|
}
|