Merge pull request #110 from lioncash/override

MkCastTo: Use override where applicable
This commit is contained in:
Phillip Stephens 2019-10-18 01:00:31 -07:00 committed by GitHub
commit c63ee167da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ public:
for tp in CENTITY_TYPES:
if type(tp) == tuple:
headerf.write(' void Visit(%s* p);\n' % getqualified(tp))
headerf.write(' void Visit(%s* p) override;\n' % getqualified(tp))
headerf.write('''
T* GetPtr() const { return ptr; }