Index: third_party/lzma/v4_65/files/CPP/7zip/Archive/Common/DummyOutStream.cpp |
diff --git a/third_party/lzma/v4_65/files/CPP/7zip/Archive/Common/DummyOutStream.cpp b/third_party/lzma/v4_65/files/CPP/7zip/Archive/Common/DummyOutStream.cpp |
deleted file mode 100644 |
index 54bcfec1108d9003e148b51682cf654ec110881a..0000000000000000000000000000000000000000 |
--- a/third_party/lzma/v4_65/files/CPP/7zip/Archive/Common/DummyOutStream.cpp |
+++ /dev/null |
@@ -1,22 +0,0 @@ |
-// DummyOutStream.cpp |
- |
-#include "StdAfx.h" |
- |
-#include "DummyOutStream.h" |
- |
-STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize) |
-{ |
- UInt32 realProcessedSize; |
- HRESULT result; |
- if(!_stream) |
- { |
- realProcessedSize = size; |
- result = S_OK; |
- } |
- else |
- result = _stream->Write(data, size, &realProcessedSize); |
- _size += realProcessedSize; |
- if(processedSize != NULL) |
- *processedSize = realProcessedSize; |
- return result; |
-} |