We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cb3bff commit 2a1069fCopy full SHA for 2a1069f
src/solvers/smt2_incremental/object_tracking.h
@@ -43,11 +43,11 @@ struct decision_procedure_objectt
43
/// to deferencing a pointer to this object with a zero offset.
44
exprt base_expression;
45
/// Number which uniquely identifies this particular object.
46
- std::size_t unique_id;
+ std::size_t unique_id = 0;
47
/// Expression which evaluates to the size of the object in bytes.
48
exprt size;
49
/// This is true for heap allocated objects and false for stack allocated.
50
- bool is_dynamic;
+ bool is_dynamic = false;
51
};
52
53
/// The model of addresses we use consists of a unique object identifier and an
0 commit comments