Delete unused sym_clear_flag function. (#115744)

This commit is contained in:
Benjamin Peterson 2024-02-20 17:40:48 -08:00 committed by GitHub
parent 259730bbb5
commit 1235e84276
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -247,12 +247,6 @@ sym_set_flag(_Py_UOpsSymType *sym, int flag)
sym->flags |= flag;
}
static inline void
sym_clear_flag(_Py_UOpsSymType *sym, int flag)
{
sym->flags &= (~flag);
}
static inline bool
sym_has_flag(_Py_UOpsSymType *sym, int flag)
{