Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/Common/InMemStream.h')
-rwxr-xr-xCPP/7zip/Common/InMemStream.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/CPP/7zip/Common/InMemStream.h b/CPP/7zip/Common/InMemStream.h
index 636718c6..adc5aadd 100755
--- a/CPP/7zip/Common/InMemStream.h
+++ b/CPP/7zip/Common/InMemStream.h
@@ -162,7 +162,7 @@ struct IInMemStreamMtCallback
// must be same for all calls
virtual size_t GetBlockSize() = 0;
- // Out:
+ // Out:
// result != S_OK stops Reading
// if *p = 0, result must be != S_OK;
// Locking is allowed
@@ -249,7 +249,7 @@ public:
~CInMemStreamMt() { Free(); }
void SetStream(ISequentialInStream *stream) { _stream = stream; }
- // to stop reading you must implement
+ // to stop reading you must implement
// returning Error in IInMemStreamMtCallback::AllocateBlock
// and then you must free at least one substream
HRes StartReadThread();
@@ -260,7 +260,7 @@ public:
// void StopReading() { _stopReading = true; }
};
-class CInMemStream:
+class CInMemStream:
public ISequentialInStream,
public CMyUnknownImp
{
@@ -269,8 +269,8 @@ class CInMemStream:
public:
int Index;
CInMemStreamMt *mtStream;
- void Init(bool keepData = false)
- {
+ void Init(bool keepData = false)
+ {
_size = 0; _keepData = keepData ;
}
MY_UNKNOWN_IMP