@@ -102,18 +102,6 @@ class ternary_exprt : public expr_protectedt
102
102
class symbol_exprt : public nullary_exprt
103
103
{
104
104
public:
105
- DEPRECATED (SINCE(2018 , 9 , 21 , " use symbol_exprt(identifier, type) instead" ))
106
- symbol_exprt () : nullary_exprt(ID_symbol)
107
- {
108
- }
109
-
110
- // / \param identifier: Name of symbol
111
- DEPRECATED (SINCE(2018 , 9 , 21 , " use symbol_exprt(identifier, type) instead" ))
112
- explicit symbol_exprt (const irep_idt &identifier) : nullary_exprt(ID_symbol)
113
- {
114
- set_identifier (identifier);
115
- }
116
-
117
105
// / \param type: Type of symbol
118
106
explicit symbol_exprt (typet type) : nullary_exprt(ID_symbol, std::move(type))
119
107
{
@@ -152,28 +140,6 @@ class symbol_exprt : public nullary_exprt
152
140
class decorated_symbol_exprt :public symbol_exprt
153
141
{
154
142
public:
155
- DEPRECATED (
156
- SINCE (2018 , 9 , 21 , " use decorated_symbol_exprt(identifier, type) instead" ))
157
- decorated_symbol_exprt()
158
- {
159
- }
160
-
161
- // / \param identifier: Name of symbol
162
- DEPRECATED (
163
- SINCE (2018 , 9 , 21 , " use decorated_symbol_exprt(identifier, type) instead" ))
164
- explicit decorated_symbol_exprt(const irep_idt &identifier):
165
- symbol_exprt(identifier)
166
- {
167
- }
168
-
169
- // / \param type: Type of symbol
170
- DEPRECATED (
171
- SINCE (2018 , 9 , 21 , " use decorated_symbol_exprt(identifier, type) instead" ))
172
- explicit decorated_symbol_exprt(const typet &type):
173
- symbol_exprt(type)
174
- {
175
- }
176
-
177
143
// / \param identifier: Name of symbol
178
144
// / \param type: Type of symbol
179
145
decorated_symbol_exprt (const irep_idt &identifier, typet type)
0 commit comments