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/Common/MyMap.h')
-rw-r--r--[-rwxr-xr-x]CPP/Common/MyMap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/CPP/Common/MyMap.h b/CPP/Common/MyMap.h
index d0dd43f5..cbcbadd6 100755..100644
--- a/CPP/Common/MyMap.h
+++ b/CPP/Common/MyMap.h
@@ -3,8 +3,8 @@
#ifndef __COMMON_MYMAP_H
#define __COMMON_MYMAP_H
+#include "MyTypes.h"
#include "MyVector.h"
-#include "Types.h"
class CMap32
{
@@ -21,7 +21,7 @@ class CMap32
public:
void Clear() { Nodes.Clear(); }
- bool Find(UInt32 key, UInt32 &valueRes) const;
+ bool Find(UInt32 key, UInt32 &valueRes) const throw();
bool Set(UInt32 key, UInt32 value); // returns true, if there is such key already
};