[NFC] Fixing some stdlib unused warnings

This commit is contained in:
LucianoAlmeida
2022-02-20 18:18:35 -03:00
parent b0043966cd
commit 09bf4cb6d1
3 changed files with 4 additions and 4 deletions

View File

@@ -822,8 +822,8 @@ internal struct _ContiguousArrayBuffer<Element>: _ArrayBufferProtocol {
// class type to use _ContiguousArrayStorage<AnyObject> when we bridge
// to objective-c we need to set the correct Element type so that when
// we bridge back we can use O(1) bridging i.e we can adopt the storage.
_swift_setClassMetadata(_ContiguousArrayStorage<Element>.self,
onObject: _storage)
_ = _swift_setClassMetadata(_ContiguousArrayStorage<Element>.self,
onObject: _storage)
}
return _storage
}