diff options
author | tsepez <tsepez@chromium.org> | 2016-05-04 06:13:45 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-04 06:13:45 -0700 |
commit | 2a14bde1011a5d374d1109fd83f59a8ff67c162e (patch) | |
tree | e11df29fe4c82e4b502884f5bec8618dfec0491d /xfa/fgas/crt/fgas_memory.h | |
parent | 4c133f3bce38415597a011f79385ec130c8adbe8 (diff) | |
download | pdfium-2a14bde1011a5d374d1109fd83f59a8ff67c162e.tar.xz |
Replace IFX_MemoryAllocator::Release() with delete.
All Release() did was invoke delete. Add some "overrides"
while we're at it.
Review-Url: https://codereview.chromium.org/1951573002
Diffstat (limited to 'xfa/fgas/crt/fgas_memory.h')
-rw-r--r-- | xfa/fgas/crt/fgas_memory.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/xfa/fgas/crt/fgas_memory.h b/xfa/fgas/crt/fgas_memory.h index c6c837600b..a83933c7a5 100644 --- a/xfa/fgas/crt/fgas_memory.h +++ b/xfa/fgas/crt/fgas_memory.h @@ -18,8 +18,6 @@ enum FX_ALLOCTYPE { class IFX_MemoryAllocator { public: virtual ~IFX_MemoryAllocator() {} - virtual void Release() = 0; - virtual void* Alloc(size_t size) = 0; virtual void Free(void* pBlock) = 0; |