mark all virtuals in the clang plugin as override

In order to help catch Clang API changes.

Change-Id: I5738f5dff405f7a2dd377c983fb32c1c7a2ff921
This commit is contained in:
Luboš Luňák
2013-05-31 18:34:11 +02:00
parent a20c189415
commit a0d320096c
15 changed files with 21 additions and 21 deletions

View File

@@ -22,7 +22,7 @@ class UnusedVariableCheck
{
public:
explicit UnusedVariableCheck( CompilerInstance& compiler );
virtual void run();
virtual void run() override;
bool VisitVarDecl( const VarDecl* var );
};