Skip to content

Commit e23573d

Browse files
committed
WIP, create PRs
1 parent 8a27a92 commit e23573d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/analyses/ai.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ class ait : public ai_recursive_interproceduralt
589589
// Not recommended as it will throw an exception if a location has not
590590
// been reached in an analysis and there is no (other) way of telling
591591
// if a location has been reached.
592-
DEPRECATED(SINCE(2019, 08, 01, "use abstract_state_{before,after} instead"))
592+
// DEPRECATED(SINCE(2019, 08, 01, "use abstract_state_{before,after} instead"))
593593
const domainT &operator[](locationt l) const
594594
{
595595
auto p = storage->abstract_state_before(l, *domain_factory);
@@ -607,7 +607,7 @@ class ait : public ai_recursive_interproceduralt
607607
// Support the legacy get_state interface which is needed for a few domains
608608
// This is one of the few users of the legacy get_state(locationt) method
609609
// in location_sensitive_storaget.
610-
DEPRECATED(SINCE(2019, 08, 01, "use get_state(trace_ptrt p) instead"))
610+
// DEPRECATED(SINCE(2019, 08, 01, "use get_state(trace_ptrt p) instead"))
611611
virtual statet &get_state(locationt l)
612612
{
613613
auto &s = dynamic_cast<location_sensitive_storaget &>(*storage);

src/analyses/ai_storage.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class location_sensitive_storaget : public trace_map_storaget
200200
// Care should be exercised in using this. It is possible to create domains
201201
// without any corresponding history object(s). This can lead to somewhat
202202
// unexpected behaviour depending on which APIs you use.
203-
DEPRECATED(SINCE(2019, 08, 01, "use get_state(trace_ptrt p) instead"))
203+
// DEPRECATED(SINCE(2019, 08, 01, "use get_state(trace_ptrt p) instead"))
204204
statet &get_state(locationt l, const ai_domain_factory_baset &fac)
205205
{
206206
typename state_mapt::const_iterator it = state_map.find(l);

0 commit comments

Comments
 (0)