Skip to content

Commit e83c77b

Browse files
committed
Remove deprecated symbol_exprt and decorated_symbol_exprt constructors
These have been deprecated since 21 Sept 2018.
1 parent 9b3cf58 commit e83c77b

File tree

1 file changed

+0
-31
lines changed

1 file changed

+0
-31
lines changed

src/util/std_expr.h

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -98,18 +98,6 @@ class ternary_exprt : public expr_protectedt
9898
class symbol_exprt : public nullary_exprt
9999
{
100100
public:
101-
DEPRECATED("use symbol_exprt(identifier, type) instead")
102-
symbol_exprt() : nullary_exprt(ID_symbol)
103-
{
104-
}
105-
106-
/// \param identifier: Name of symbol
107-
DEPRECATED("use symbol_exprt(identifier, type) instead")
108-
explicit symbol_exprt(const irep_idt &identifier) : nullary_exprt(ID_symbol)
109-
{
110-
set_identifier(identifier);
111-
}
112-
113101
/// \param type: Type of symbol
114102
explicit symbol_exprt(const typet &type) : nullary_exprt(ID_symbol, type)
115103
{
@@ -148,25 +136,6 @@ class symbol_exprt : public nullary_exprt
148136
class decorated_symbol_exprt:public symbol_exprt
149137
{
150138
public:
151-
DEPRECATED("use decorated_symbol_exprt(identifier, type) instead")
152-
decorated_symbol_exprt()
153-
{
154-
}
155-
156-
/// \param identifier: Name of symbol
157-
DEPRECATED("use decorated_symbol_exprt(identifier, type) instead")
158-
explicit decorated_symbol_exprt(const irep_idt &identifier):
159-
symbol_exprt(identifier)
160-
{
161-
}
162-
163-
/// \param type: Type of symbol
164-
DEPRECATED("use decorated_symbol_exprt(identifier, type) instead")
165-
explicit decorated_symbol_exprt(const typet &type):
166-
symbol_exprt(type)
167-
{
168-
}
169-
170139
/// \param identifier: Name of symbol
171140
/// \param type: Type of symbol
172141
decorated_symbol_exprt(

0 commit comments

Comments
 (0)