Core/RefCounted: Remove persistent boolean

Former-commit-id: 99602e0fa1e54b6fc8e0087ef89d0e2c74bcfc15 [formerly 83374368c28b83e4916958e7a58d54ec663a9842]
Former-commit-id: 603d0c81eada7d1f25058163bbf97672cd96d08c
This commit is contained in:
Lynix
2016-08-02 12:52:49 +02:00
parent 44174feac6
commit 07725ceb03
28 changed files with 4 additions and 110 deletions

View File

@@ -41,8 +41,6 @@ namespace Nz
TextureBackgroundRef TextureBackground::New(Args&&... args)
{
std::unique_ptr<TextureBackground> object(new TextureBackground(std::forward<Args>(args)...));
object->SetPersistent(false);
return object.release();
}
}