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