Skip to content

Commit

Permalink
Marked Consumer Process Funcs as Override (#1370)
Browse files Browse the repository at this point in the history
Should make sure that generation of derived class functions declarations can never drift from base
class versions leading to base class stubs being silently called.
Note we should drop the virtual since it is redundant but doing that is another story and will be
told another day. Handy dandy style guideline about it:
https://bit.ly/3R0UAo4
  • Loading branch information
andrew-lunarg authored Nov 27, 2023
1 parent a57d814 commit be08673
Show file tree
Hide file tree
Showing 2 changed files with 484 additions and 484 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,4 @@ def write_include(self):
write(code, file=self.outFile)

def get_consumer_function_body(self, class_name, method_info, return_type):
return ';'
return ' override;'
Loading

0 comments on commit be08673

Please sign in to comment.