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/Crypto/7zAes.h')
-rw-r--r--[-rwxr-xr-x]CPP/7zip/Crypto/7zAes.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/CPP/7zip/Crypto/7zAes.h b/CPP/7zip/Crypto/7zAes.h
index 79d723fa..560af5c2 100755..100644
--- a/CPP/7zip/Crypto/7zAes.h
+++ b/CPP/7zip/Crypto/7zAes.h
@@ -3,9 +3,9 @@
#ifndef __CRYPTO_7Z_AES_H
#define __CRYPTO_7Z_AES_H
-#include "Common/Buffer.h"
-#include "Common/MyCom.h"
-#include "Common/MyVector.h"
+#include "../../Common/MyBuffer.h"
+#include "../../Common/MyCom.h"
+#include "../../Common/MyVector.h"
#include "../ICoder.h"
#include "../IPassword.h"
@@ -39,10 +39,10 @@ public:
class CKeyInfoCache
{
- int Size;
+ unsigned Size;
CObjectVector<CKeyInfo> Keys;
public:
- CKeyInfoCache(int size): Size(size) {}
+ CKeyInfoCache(unsigned size): Size(size) {}
bool Find(CKeyInfo &key);
// HRESULT Calculate(CKeyInfo &key);
void Add(CKeyInfo &key);