Skip to content

Commit dbbc6f4

Browse files
committed
Remove deprecated symbol_exprt and decorated_symbol_exprt constructors
These have been deprecated since 21 Sept 2018.
1 parent 5d48769 commit dbbc6f4

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

0 commit comments

Comments
 (0)