ksys/chm: Make Root non-copyable for safety reasons

This commit is contained in:
Léo Lam 2021-03-21 18:42:21 +01:00
parent 46dc4bf31c
commit f8ca5ab333
No known key found for this signature in database
GPG Key ID: 0DF30F9081000741
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,8 @@ class Root : public agl::utl::ParameterList, public sead::hostio::Node, public I
public:
Root();
~Root() override;
Root(const Root&) = delete;
auto operator=(const Root&) = delete;
void parse(const agl::utl::ResParameterList& res_list, sead::Heap* heap);