We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b055179 commit 9e355e9Copy full SHA for 9e355e9
src/analyses/goto_check.cpp
@@ -1649,12 +1649,16 @@ void goto_checkt::goto_check(
1649
if((is_user_provided && !enable_assertions &&
1650
i.source_location.get_property_class()!="error label") ||
1651
(!is_user_provided && !enable_built_in_assertions))
1652
- i.type=SKIP;
+ {
1653
+ i.make_skip();
1654
+ }
1655
}
1656
else if(i.is_assume())
1657
{
1658
if(!enable_assumptions)
1659
1660
1661
1662
1663
else if(i.is_dead())
1664
src/goto-programs/set_properties.cpp
@@ -32,7 +32,7 @@ void set_properties(
32
property_set.find(property_id);
33
34
if(c_it==property_set.end())
35
- it->type=SKIP;
+ it->make_skip();
36
else
37
property_set.erase(c_it);
38
0 commit comments