diff options
-rw-r--r-- | package/source/zipapi/MemoryByteGrabber.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/source/zipapi/MemoryByteGrabber.hxx b/package/source/zipapi/MemoryByteGrabber.hxx index 7f3c42485876..9b1c096ae056 100644 --- a/package/source/zipapi/MemoryByteGrabber.hxx +++ b/package/source/zipapi/MemoryByteGrabber.hxx @@ -34,6 +34,8 @@ public: , mnEnd ( rBuffer.getLength() ) { } + MemoryByteGrabber(css::uno::Sequence<sal_Int8> &&) = delete; + const sal_Int8 * getCurrentPos () { return mpBuffer + mnCurrent; } sal_Int32 remainingSize() const { return mnEnd - mnCurrent; } |