diff --git a/include/stratosphere/domainowner.hpp b/include/stratosphere/domainowner.hpp index 882db5c3..8f990ea4 100644 --- a/include/stratosphere/domainowner.hpp +++ b/include/stratosphere/domainowner.hpp @@ -14,12 +14,6 @@ class DomainOwner { private: std::array, DOMAIN_ID_MAX> domain_objects; public: - DomainOwner() { - for (unsigned int i = 0; i < DOMAIN_ID_MAX; i++) { - this->domain_objects[i].reset(); - } - } - /* Shared ptrs should auto delete here. */ virtual ~DomainOwner() = default;