diff options
author | Lei Zhang <thestig@chromium.org> | 2017-12-19 19:00:43 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-12-19 19:00:43 +0000 |
commit | 58c2c144c5ac6a7397573d2f25d1ba9c79bc4f15 (patch) | |
tree | 438cd4c32e367e1433d5e5f01896984d564f67c2 /core/fxcrt/cfx_binarybuf.h | |
parent | 9ccf08746e57a03fd9afc187cb3e23404cdc88bb (diff) | |
download | pdfium-58c2c144c5ac6a7397573d2f25d1ba9c79bc4f15.tar.xz |
Remove some dead code.
Change-Id: I8edb14c024860c66b5e6c014136393e71e38387d
Reviewed-on: https://pdfium-review.googlesource.com/21570
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fxcrt/cfx_binarybuf.h')
-rw-r--r-- | core/fxcrt/cfx_binarybuf.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/core/fxcrt/cfx_binarybuf.h b/core/fxcrt/cfx_binarybuf.h index 1a1c821bb9..2d4f019560 100644 --- a/core/fxcrt/cfx_binarybuf.h +++ b/core/fxcrt/cfx_binarybuf.h @@ -16,7 +16,6 @@ class CFX_BinaryBuf { public: CFX_BinaryBuf(); - explicit CFX_BinaryBuf(size_t size); virtual ~CFX_BinaryBuf(); uint8_t* GetBuffer() const { return m_pBuffer.get(); } @@ -36,7 +35,6 @@ class CFX_BinaryBuf { m_pBuffer.get()[m_DataSize++] = byte; } - void InsertBlock(size_t pos, const void* pBuf, size_t size); void Delete(size_t start_index, size_t count); // Releases ownership of |m_pBuffer| and returns it. |