libstrat: misc fixes for unused arg warnings

This commit is contained in:
Michael Scire
2022-03-22 01:00:39 -07:00
parent b2413b7464
commit b06ada6ac8
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);
}