Skip to content

Commit a95d946

Browse files
author
kroening
committed
numberings now use size_t
git-svn-id: svn+ssh://svn.cprover.org/srv/svn/cbmc/trunk@6391 6afb6bc1-c8e4-404c-8f48-9ae832c5b171
1 parent 5e1d557 commit a95d946

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/numbering.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ template <typename T>
1919
class numbering:public std::vector<T>
2020
{
2121
public:
22-
typedef unsigned int number_type;
22+
typedef std::size_t number_type;
2323

2424
number_type number(const T &a)
2525
{

0 commit comments

Comments
 (0)