2 * This file is part of the LibreOffice project.
6 * This file is distributed under the University of Illinois Open Source
7 * License. See LICENSE.TXT for details.
11 #ifndef UNUSEDVARIABLECHECK_H
12 #define UNUSEDVARIABLECHECK_H
19 class UnusedVariableCheck
20 : public RecursiveASTVisitor
< UnusedVariableCheck
>
24 explicit UnusedVariableCheck( CompilerInstance
& compiler
);
25 virtual void run() override
;
26 bool VisitVarDecl( const VarDecl
* var
);
31 #endif // UNUSEDVARIABLECHECK_H