diff options
Diffstat (limited to 'compilerplugins/clang/store/tutorial/tutorial1.hxx')
-rw-r--r-- | compilerplugins/clang/store/tutorial/tutorial1.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compilerplugins/clang/store/tutorial/tutorial1.hxx b/compilerplugins/clang/store/tutorial/tutorial1.hxx index 144d0dc64f36..bb5fe2e397f0 100644 --- a/compilerplugins/clang/store/tutorial/tutorial1.hxx +++ b/compilerplugins/clang/store/tutorial/tutorial1.hxx @@ -27,7 +27,7 @@ class Tutorial1 // Ctor, nothing special. Tutorial1( CompilerInstance& compiler ); // The function that will be called to perform the actual action. - virtual void run(); + virtual void run() override; // Function from Clang, it will be called for every return statement in the source. bool VisitReturnStmt( const ReturnStmt* returnstmt ); }; |