Skip to content

Commit dde98bd

Browse files
committed
Remove deprecated symbol_exprt and decorated_symbol_exprt constructors
These have been deprecated since 21 Sept 2018.
1 parent 7a62d74 commit dde98bd

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
@@ -92,18 +92,6 @@ class ternary_exprt : public exprt
9292
class symbol_exprt : public nullary_exprt
9393
{
9494
public:
95-
DEPRECATED("use symbol_exprt(identifier, type) instead")
96-
symbol_exprt() : nullary_exprt(ID_symbol)
97-
{
98-
}
99-
100-
/// \param identifier: Name of symbol
101-
DEPRECATED("use symbol_exprt(identifier, type) instead")
102-
explicit symbol_exprt(const irep_idt &identifier) : nullary_exprt(ID_symbol)
103-
{
104-
set_identifier(identifier);
105-
}
106-
10795
/// \param type: Type of symbol
10896
explicit symbol_exprt(const typet &type) : nullary_exprt(ID_symbol, type)
10997
{
@@ -142,25 +130,6 @@ class symbol_exprt : public nullary_exprt
142130
class decorated_symbol_exprt:public symbol_exprt
143131
{
144132
public:
145-
DEPRECATED("use decorated_symbol_exprt(identifier, type) instead")
146-
decorated_symbol_exprt()
147-
{
148-
}
149-
150-
/// \param identifier: Name of symbol
151-
DEPRECATED("use decorated_symbol_exprt(identifier, type) instead")
152-
explicit decorated_symbol_exprt(const irep_idt &identifier):
153-
symbol_exprt(identifier)
154-
{
155-
}
156-
157-
/// \param type: Type of symbol
158-
DEPRECATED("use decorated_symbol_exprt(identifier, type) instead")
159-
explicit decorated_symbol_exprt(const typet &type):
160-
symbol_exprt(type)
161-
{
162-
}
163-
164133
/// \param identifier: Name of symbol
165134
/// \param type: Type of symbol
166135
decorated_symbol_exprt(

0 commit comments

Comments
 (0)