Skip to content

Commit 70e3c60

Browse files
committed
Remove deprecated nil_typet
It has been deprecated for 7 months.
1 parent 00713d6 commit 70e3c60

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/util/std_types.h

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,6 @@ class bool_typet:public typet
3434
}
3535
};
3636

37-
/// The NIL type, i.e., an invalid type, no value.
38-
/// \deprecated Use `optional<typet>` instead.
39-
// NOLINTNEXTLINE
40-
class DEPRECATED(SINCE(2018, 8, 22, "Use `optional<typet>` instead.")) nil_typet
41-
: public typet
42-
{
43-
public:
44-
nil_typet():typet(static_cast<const typet &>(get_nil_irep()))
45-
{
46-
}
47-
};
48-
4937
/// The empty type
5038
class empty_typet:public typet
5139
{

0 commit comments

Comments
 (0)