diff options
author | Benedikt Tutzer <e1225461@student.tuwien.ac.at> | 2018-10-25 15:06:26 +0200 |
---|---|---|
committer | Benedikt Tutzer <e1225461@student.tuwien.ac.at> | 2018-10-25 15:06:26 +0200 |
commit | a13cba31c99340816cde520f0b51fcb6880c0172 (patch) | |
tree | d63abed6cd19a30dcd225fbab10e3210026737f9 /py_wrap_generator.py | |
parent | 05a9adfdeb3d66ea7aad1335d8658e133b54d903 (diff) | |
download | yosys-a13cba31c99340816cde520f0b51fcb6880c0172.tar.gz yosys-a13cba31c99340816cde520f0b51fcb6880c0172.tar.bz2 yosys-a13cba31c99340816cde520f0b51fcb6880c0172.zip |
removed deletes
Diffstat (limited to 'py_wrap_generator.py')
-rw-r--r-- | py_wrap_generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/py_wrap_generator.py b/py_wrap_generator.py index 204b9146c..f26c15070 100644 --- a/py_wrap_generator.py +++ b/py_wrap_generator.py @@ -805,7 +805,7 @@ class WClass: if self.link_type != link_types.global_list: text += "\n\t\t~" + self.name + "()\n\t\t{" - text += "\n\t\t\tdelete(this->ref_obj);\n\t\t}\n" + text += "\n\t\t\t//delete(this->ref_obj);\n\t\t}\n" for con in self.found_constrs: text += con.gen_decl() |