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);
|
||||
}
|
||||
|
||||
CFactoryFnReturn FDependencyGroupFactory(const SObjectTag& /*tag*/, CInputStream& in, const CVParamTransfer& /*param*/,
|
||||
CObjectReference* selfRef) {
|
||||
CFactoryFnReturn FDependencyGroupFactory([[maybe_unused]] const SObjectTag& tag, CInputStream& in,
|
||||
[[maybe_unused]] const CVParamTransfer& param,
|
||||
[[maybe_unused]] CObjectReference* selfRef) {
|
||||
return TToken<CDependencyGroup>::GetIObjObjectFor(std::make_unique<CDependencyGroup>(in));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue