mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #2180 from Xiretza/pyosys-override
pyosys: Use C++11 override keyword for bindings
This commit is contained in:
commit
692ec5fc9d
|
@ -1414,7 +1414,7 @@ class WFunction:
|
||||||
text += ", "
|
text += ", "
|
||||||
if len(self.args) > 0:
|
if len(self.args) > 0:
|
||||||
text = text[:-2]
|
text = text[:-2]
|
||||||
text += ") YS_OVERRIDE;\n"
|
text += ") override;\n"
|
||||||
return text
|
return text
|
||||||
|
|
||||||
def gen_decl_hash_py(self):
|
def gen_decl_hash_py(self):
|
||||||
|
|
Loading…
Reference in New Issue