mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +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];
|
|
}
|