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/InBuffer.h')
-rwxr-xr-xCPP/7zip/Common/InBuffer.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/CPP/7zip/Common/InBuffer.h b/CPP/7zip/Common/InBuffer.h
index 057caa16..05fc77e5 100755
--- a/CPP/7zip/Common/InBuffer.h
+++ b/CPP/7zip/Common/InBuffer.h
@@ -5,13 +5,12 @@
#include "../IStream.h"
#include "../../Common/MyCom.h"
+#include "../../Common/MyException.h"
#ifndef _NO_EXCEPTIONS
-class CInBufferException
+struct CInBufferException: public CSystemException
{
-public:
- HRESULT ErrorCode;
- CInBufferException(HRESULT errorCode): ErrorCode(errorCode) {}
+ CInBufferException(HRESULT errorCode): CSystemException(errorCode) {}
};
#endif