mirror of https://github.com/AxioDL/metaforce.git
CDependencyGroup: Make use of [[maybe_unused]] where applicable
This commit is contained in:
parent
4a6c3cde3c
commit
14e0067a97
|
@ -11,8 +11,9 @@ void CDependencyGroup::ReadFromStream(CInputStream& in) {
|
||||||
x0_objectTags.emplace_back(in);
|
x0_objectTags.emplace_back(in);
|
||||||
}
|
}
|
||||||
|
|
||||||
CFactoryFnReturn FDependencyGroupFactory(const SObjectTag& /*tag*/, CInputStream& in, const CVParamTransfer& /*param*/,
|
CFactoryFnReturn FDependencyGroupFactory([[maybe_unused]] const SObjectTag& tag, CInputStream& in,
|
||||||
CObjectReference* selfRef) {
|
[[maybe_unused]] const CVParamTransfer& param,
|
||||||
|
[[maybe_unused]] CObjectReference* selfRef) {
|
||||||
return TToken<CDependencyGroup>::GetIObjObjectFor(std::make_unique<CDependencyGroup>(in));
|
return TToken<CDependencyGroup>::GetIObjObjectFor(std::make_unique<CDependencyGroup>(in));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue