Skip to content

Commit ab7ab84

Browse files
committed
Remove deprecated symbol_exprt and decorated_symbol_exprt constructors
These have been deprecated since 21 Sept 2018.
1 parent 82881eb commit ab7ab84

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
@@ -154,18 +154,6 @@ inline void validate_expr(const transt &value)
154154
class symbol_exprt : public nullary_exprt
155155
{
156156
public:
157-
DEPRECATED("use symbol_exprt(identifier, type) instead")
158-
symbol_exprt() : nullary_exprt(ID_symbol)
159-
{
160-
}
161-
162-
/// \param identifier: Name of symbol
163-
DEPRECATED("use symbol_exprt(identifier, type) instead")
164-
explicit symbol_exprt(const irep_idt &identifier) : nullary_exprt(ID_symbol)
165-
{
166-
set_identifier(identifier);
167-
}
168-
169157
/// \param type: Type of symbol
170158
explicit symbol_exprt(const typet &type) : nullary_exprt(ID_symbol, type)
171159
{
@@ -195,25 +183,6 @@ class symbol_exprt : public nullary_exprt
195183
class decorated_symbol_exprt:public symbol_exprt
196184
{
197185
public:
198-
DEPRECATED("use decorated_symbol_exprt(identifier, type) instead")
199-
decorated_symbol_exprt()
200-
{
201-
}
202-
203-
/// \param identifier: Name of symbol
204-
DEPRECATED("use decorated_symbol_exprt(identifier, type) instead")
205-
explicit decorated_symbol_exprt(const irep_idt &identifier):
206-
symbol_exprt(identifier)
207-
{
208-
}
209-
210-
/// \param type: Type of symbol
211-
DEPRECATED("use decorated_symbol_exprt(identifier, type) instead")
212-
explicit decorated_symbol_exprt(const typet &type):
213-
symbol_exprt(type)
214-
{
215-
}
216-
217186
/// \param identifier: Name of symbol
218187
/// \param type: Type of symbol
219188
decorated_symbol_exprt(

0 commit comments

Comments
 (0)