Remove STMT_ANY statement type

This commit is contained in:
Tim Wojtulewicz 2024-08-02 11:06:12 -07:00
parent e2b03681d1
commit 1d4bd2c70a
2 changed files with 0 additions and 7 deletions

View file

@ -54,12 +54,6 @@ const char* stmt_name(StmtTag t) {
"std-function",
};
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
if ( int(t) == STMT_ANY )
return "any";
#pragma GCC diagnostic pop
return stmt_names[int(t)];
}