SafeLine/yanshi/src/syntax.cc
2023-07-20 15:19:03 +08:00

10 lines
130 B
C++

#include "syntax.hh"
void stmt_free(Stmt* stmt)
{
while (stmt) {
auto x = stmt->next;
delete stmt;
stmt = x;
}
}