File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,23 +37,23 @@ class irep_hash_container_baset
37
37
38
38
// this is the first level: address of the content
39
39
40
- struct pointer_hash
40
+ struct pointer_hasht
41
41
{
42
42
inline size_t operator ()(const void *p) const
43
43
{
44
44
return (size_t )p;
45
45
}
46
46
};
47
47
48
- typedef std::unordered_map<const void *, size_t , pointer_hash >
48
+ typedef std::unordered_map<const void *, size_t , pointer_hasht >
49
49
ptr_hasht;
50
50
ptr_hasht ptr_hash;
51
51
52
52
// this is the second level: content
53
53
54
54
typedef std::vector<size_t > packedt;
55
55
56
- struct vector_hash
56
+ struct vector_hasht
57
57
{
58
58
inline size_t operator ()(const packedt &p) const
59
59
{
@@ -64,7 +64,7 @@ class irep_hash_container_baset
64
64
}
65
65
};
66
66
67
- typedef hash_numbering<packedt, vector_hash > numberingt;
67
+ typedef hash_numbering<packedt, vector_hasht > numberingt;
68
68
numberingt numbering;
69
69
70
70
void pack (const irept &irep, packedt &);
You can’t perform that action at this time.
0 commit comments