Skip to content

Commit 528fdbb

Browse files
mgudemannMatthias Güdemann
authored and
Matthias Güdemann
committed
fix type names for linter
1 parent 5f755f8 commit 528fdbb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/util/irep_hash_container.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,23 @@ class irep_hash_container_baset
3737

3838
// this is the first level: address of the content
3939

40-
struct pointer_hash
40+
struct pointer_hasht
4141
{
4242
inline size_t operator()(const void *p) const
4343
{
4444
return (size_t)p;
4545
}
4646
};
4747

48-
typedef std::unordered_map<const void *, size_t, pointer_hash>
48+
typedef std::unordered_map<const void *, size_t, pointer_hasht>
4949
ptr_hasht;
5050
ptr_hasht ptr_hash;
5151

5252
// this is the second level: content
5353

5454
typedef std::vector<size_t> packedt;
5555

56-
struct vector_hash
56+
struct vector_hasht
5757
{
5858
inline size_t operator()(const packedt &p) const
5959
{
@@ -64,7 +64,7 @@ class irep_hash_container_baset
6464
}
6565
};
6666

67-
typedef hash_numbering<packedt, vector_hash> numberingt;
67+
typedef hash_numbering<packedt, vector_hasht> numberingt;
6868
numberingt numbering;
6969

7070
void pack(const irept &irep, packedt &);

0 commit comments

Comments
 (0)