We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50c52f1 commit 2a1c23aCopy full SHA for 2a1c23a
src/CPP/7zip/Archive/Common/HandlerOut.h
@@ -22,7 +22,7 @@ class CCommonMethodProps
22
_numThreads_WasForced = false;
23
#endif
24
25
- UInt64 memAvail = (UInt64)(sizeof(size_t)) << 28;
+ size_t memAvail = (size_t)sizeof(size_t) << 28;
26
_memAvail = memAvail;
27
_memUsage_Compress = memAvail;
28
_memUsage_Decompress = memAvail;
@@ -55,7 +55,7 @@ class CCommonMethodProps
55
bool _memUsage_WasSet;
56
UInt64 _memUsage_Compress;
57
UInt64 _memUsage_Decompress;
58
- UInt64 _memAvail;
+ size_t _memAvail;
59
60
bool SetCommonProperty(const UString &name, const PROPVARIANT &value, HRESULT &hres);
61
0 commit comments