Skip to content

Commit 2a7a0e8

Browse files
author
Daniel Kroening
committed
the step number needs to be a size_t
1 parent f22a864 commit 2a7a0e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/goto-programs/goto_trace.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Date: July 2005
3535
class goto_trace_stept
3636
{
3737
public:
38-
unsigned step_nr;
38+
std::size_t step_nr;
3939

4040
bool is_assignment() const { return type==typet::ASSIGNMENT; }
4141
bool is_assume() const { return type==typet::ASSUME; }

0 commit comments

Comments
 (0)