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