@@ -154,18 +154,6 @@ inline void validate_expr(const transt &value)
154
154
class symbol_exprt : public nullary_exprt
155
155
{
156
156
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
-
169
157
// / \param type: Type of symbol
170
158
explicit symbol_exprt (const typet &type) : nullary_exprt(ID_symbol, type)
171
159
{
@@ -195,25 +183,6 @@ class symbol_exprt : public nullary_exprt
195
183
class decorated_symbol_exprt :public symbol_exprt
196
184
{
197
185
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
-
217
186
// / \param identifier: Name of symbol
218
187
// / \param type: Type of symbol
219
188
decorated_symbol_exprt (
0 commit comments