libstrat: misc fixes for unused arg warnings

This commit is contained in:
Michael Scire
2022-03-22 01:00:39 -07:00
committed by SciresM
parent e975784179
commit fa98bf9434
3 changed files with 4 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ namespace ams::ncm {
u8 *GetBuffer(size_t o, size_t sz) const {
AMS_ASSERT(this->buffer != nullptr);
AMS_ASSERT(this->IsIncluded(o, sz));
AMS_UNUSED(sz);
return this->buffer + (o - this->offset);
}