示例#1
0
 static void
 Destroy(nsFixedSizeAllocator& aPool, nsXBLBindingRequest* aRequest) {
   aRequest->~nsXBLBindingRequest();
   aPool.Free(aRequest, sizeof(*aRequest));
 }
示例#2
0
 static void
 Destroy(nsFixedSizeAllocator& aAllocator, Row* aRow) {
   aRow->~Row();
   aAllocator.Free(aRow, sizeof(*aRow));
 }