office-gobmx/compilerplugins/clang/unusedvariablecheck.hxx
Noel Grandin a214369f14 loplugin:unusedvariablecheck improve
to find unused smart pointer variables

Change-Id: I200bdd8949032a0e061de61f7903a156651793e2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127006
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
2021-12-17 15:02:00 +01:00

32 lines
742 B
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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.
*
*/
#pragma once
#include "plugin.hxx"
namespace loplugin
{
class UnusedVariableCheck
: public FilteringPlugin< UnusedVariableCheck >
{
public:
explicit UnusedVariableCheck( const InstantiationData& data );
virtual void run() override;
bool VisitVarDecl( const VarDecl* var );
private:
bool isUnusedSmartPointer( const VarDecl* var );
};
} // namespace
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */