@@ -98,18 +98,6 @@ class ternary_exprt : public expr_protectedt
98
98
class symbol_exprt : public nullary_exprt
99
99
{
100
100
public:
101
- DEPRECATED (" use symbol_exprt(identifier, type) instead" )
102
- symbol_exprt () : nullary_exprt(ID_symbol)
103
- {
104
- }
105
-
106
- // / \param identifier: Name of symbol
107
- DEPRECATED (" use symbol_exprt(identifier, type) instead" )
108
- explicit symbol_exprt (const irep_idt &identifier) : nullary_exprt(ID_symbol)
109
- {
110
- set_identifier (identifier);
111
- }
112
-
113
101
// / \param type: Type of symbol
114
102
explicit symbol_exprt (const typet &type) : nullary_exprt(ID_symbol, type)
115
103
{
@@ -148,25 +136,6 @@ class symbol_exprt : public nullary_exprt
148
136
class decorated_symbol_exprt :public symbol_exprt
149
137
{
150
138
public:
151
- DEPRECATED (" use decorated_symbol_exprt(identifier, type) instead" )
152
- decorated_symbol_exprt ()
153
- {
154
- }
155
-
156
- // / \param identifier: Name of symbol
157
- DEPRECATED (" use decorated_symbol_exprt(identifier, type) instead" )
158
- explicit decorated_symbol_exprt (const irep_idt &identifier):
159
- symbol_exprt(identifier)
160
- {
161
- }
162
-
163
- // / \param type: Type of symbol
164
- DEPRECATED (" use decorated_symbol_exprt(identifier, type) instead" )
165
- explicit decorated_symbol_exprt (const typet &type):
166
- symbol_exprt(type)
167
- {
168
- }
169
-
170
139
// / \param identifier: Name of symbol
171
140
// / \param type: Type of symbol
172
141
decorated_symbol_exprt (
0 commit comments