1e313e759b
Some of the areas are guesses I've added after seeing them, whoever feels reponsible for whichever part of the code feel free to adjust them. Change-Id: I2192de84d51cc2bc7c28fa84019d38b465985d15
31 lines
617 B
C++
31 lines
617 B
C++
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* Based on LLVM/Clang.
|
|
*
|
|
* This file is distributed under the University of Illinois Open Source
|
|
* License. See LICENSE.TXT for details.
|
|
*
|
|
*/
|
|
|
|
#ifndef UNUSEDVARIABLECHECK_H
|
|
#define UNUSEDVARIABLECHECK_H
|
|
|
|
#include "compileplugin.hxx"
|
|
|
|
namespace loplugin
|
|
{
|
|
|
|
class UnusedVariableCheck
|
|
: public RecursiveASTVisitor< UnusedVariableCheck >
|
|
, public Plugin
|
|
{
|
|
public:
|
|
explicit UnusedVariableCheck( ASTContext& context );
|
|
void run();
|
|
bool VisitVarDecl( VarDecl* var );
|
|
};
|
|
|
|
} // namespace
|
|
|
|
#endif // UNUSEDVARIABLECHECK_H
|