3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-08 10:25:19 +00:00

Merge pull request #2180 from Xiretza/pyosys-override

pyosys: Use C++11 override keyword for bindings
This commit is contained in:
whitequark 2020-06-21 15:19:23 +00:00 committed by GitHub
commit 692ec5fc9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1414,7 +1414,7 @@ class WFunction:
text += ", "
if len(self.args) > 0:
text = text[:-2]
text += ") YS_OVERRIDE;\n"
text += ") override;\n"
return text
def gen_decl_hash_py(self):