Get allocation statistics
| 665 | |
| 666 | // Get allocation statistics |
| 667 | fl::size getTotalAllocated() const FL_NOEXCEPT { return mTotalAllocated; } |
| 668 | fl::size getTotalDeallocated() const FL_NOEXCEPT { return mTotalDeallocated; } |
| 669 | fl::size getActiveAllocations() const FL_NOEXCEPT { return mTotalAllocated - mTotalDeallocated; } |
| 670 |