@@ -92,18 +92,6 @@ class ternary_exprt : public exprt
92
92
class symbol_exprt : public nullary_exprt
93
93
{
94
94
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
-
107
95
// / \param type: Type of symbol
108
96
explicit symbol_exprt (const typet &type) : nullary_exprt(ID_symbol, type)
109
97
{
@@ -142,25 +130,6 @@ class symbol_exprt : public nullary_exprt
142
130
class decorated_symbol_exprt :public symbol_exprt
143
131
{
144
132
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
-
164
133
// / \param identifier: Name of symbol
165
134
// / \param type: Type of symbol
166
135
decorated_symbol_exprt (
0 commit comments