1
0
mirror of https://github.com/exaloop/codon.git synced 2025-06-03 15:03:52 +08:00

Remove unused field

This commit is contained in:
A. R. Shajii 2023-02-14 14:26:57 -05:00
parent f98018cf80
commit 86fe7e0be2
2 changed files with 0 additions and 3 deletions

View File

@ -115,7 +115,6 @@ struct PyType {
Func *iter = nullptr;
Func *iternext = nullptr;
Func *del = nullptr;
Func *new_ = nullptr;
Func *init = nullptr;
std::vector<PyFunction> methods;
std::vector<PyMember> members;

View File

@ -550,8 +550,6 @@ void Cache::populatePythonModule() {
py.iter = f;
} else if (n == "__del__") {
py.del = f;
} else if (n == "__new__") {
py.new_ = f;
} else if (n == "__init__") {
py.init = f;
} else {