Skip to content

Commit 7d95564

Browse files
committed
Remove deprecated symbol_exprt and decorated_symbol_exprt constructors
These have been deprecated since 21 Sept 2018.
1 parent bd4c684 commit 7d95564

File tree

1 file changed

+0
-34
lines changed

1 file changed

+0
-34
lines changed

src/util/std_expr.h

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -102,18 +102,6 @@ class ternary_exprt : public expr_protectedt
102102
class symbol_exprt : public nullary_exprt
103103
{
104104
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-
117105
/// \param type: Type of symbol
118106
explicit symbol_exprt(typet type) : nullary_exprt(ID_symbol, std::move(type))
119107
{
@@ -152,28 +140,6 @@ class symbol_exprt : public nullary_exprt
152140
class decorated_symbol_exprt:public symbol_exprt
153141
{
154142
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-
177143
/// \param identifier: Name of symbol
178144
/// \param type: Type of symbol
179145
decorated_symbol_exprt(const irep_idt &identifier, typet type)

0 commit comments

Comments
 (0)