Skip to content

Commit faf5334

Browse files
author
Owen Jones
committed
Remove unused function
1 parent bba6517 commit faf5334

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

src/pointer-analysis/external_value_set_expr.h

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -159,25 +159,6 @@ class external_value_set_exprt:public exprt
159159
return reinterpret_cast<const access_path_entriest &>(op1().operands());
160160
}
161161

162-
std::string get_access_path_label() const
163-
{
164-
switch(get_external_value_set_type())
165-
{
166-
case external_value_set_typet::PER_FIELD:
167-
return "external_objects";
168-
case external_value_set_typet::PRECISE:
169-
{
170-
std::ostringstream ret;
171-
ret << id2string(label().get_value());
172-
for(const access_path_entry_exprt &entry : access_path_entries())
173-
ret << id2string(entry.label());
174-
return ret.str();
175-
}
176-
default:
177-
UNREACHABLE;
178-
}
179-
}
180-
181162
std::string type_to_basename(const typet &type) const
182163
{
183164
if(type.id()!=ID_struct)

0 commit comments

Comments
 (0)