We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4af7aa1 + d0618c9 commit ae7379dCopy full SHA for ae7379d
src/cpp/cpp_typecheck_expr.cpp
@@ -65,14 +65,6 @@ void cpp_typecheckt::typecheck_expr_main(exprt &expr)
65
typecheck_expr_explicit_typecast(expr);
66
else if(expr.id()=="explicit-constructor-call")
67
typecheck_expr_explicit_constructor_call(expr);
68
- else if(expr.is_nil())
69
- {
70
-#ifdef DEBUG
71
- std::cerr << "E: " << expr.pretty() << '\n';
72
- std::cerr << "cpp_typecheckt::typecheck_expr_main got nil\n";
73
-#endif
74
- UNREACHABLE;
75
- }
76
else if(expr.id()==ID_code)
77
{
78
#ifdef DEBUG
0 commit comments