bump product version to 6.4.0.3
[LibreOffice.git] / compilerplugins / clang / unusedvariablecheck.hxx
blob5e8b59bdc6b01772c4a087f79d68c65309716144
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * Based on LLVM/Clang.
7 * This file is distributed under the University of Illinois Open Source
8 * License. See LICENSE.TXT for details.
12 #ifndef UNUSEDVARIABLECHECK_H
13 #define UNUSEDVARIABLECHECK_H
15 #include "plugin.hxx"
17 namespace loplugin
20 class UnusedVariableCheck
21 : public FilteringPlugin< UnusedVariableCheck >
23 public:
24 explicit UnusedVariableCheck( const InstantiationData& data );
25 virtual void run() override;
26 bool VisitVarDecl( const VarDecl* var );
29 } // namespace
31 #endif // UNUSEDVARIABLECHECK_H
33 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */