Skip to content

Commit 1071328

Browse files
committed
ireps_on_writet keys are std::size_t
... as that's the type of keys being using during lookup.
1 parent 9777d23 commit 1071328

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/irep_serialization.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class irep_serializationt
3535
ireps_on_readt ireps_on_read;
3636

3737
irep_full_hash_containert irep_full_hash_container;
38-
typedef std::map<unsigned, size_t> ireps_on_writet;
38+
typedef std::map<std::size_t, std::size_t> ireps_on_writet;
3939
ireps_on_writet ireps_on_write;
4040

4141
typedef std::vector<bool> string_mapt;

0 commit comments

Comments
 (0)