mirror of https://github.com/zeldaret/botw.git
ksys/chm: Make Root non-copyable for safety reasons
This commit is contained in:
parent
46dc4bf31c
commit
f8ca5ab333
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue