tdf#154285 Check upper bound of arguments in SbRtl_Minute function
[LibreOffice.git] / compilerplugins / clang / store / cascadingassignop.hxx
blob147ecaad0dd21b4911772b555f9cdcc44868125a
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 #pragma once
14 #include "plugin.hxx"
16 namespace loplugin
19 struct WalkCounter;
21 // The class implementing the plugin action.
22 class CascadingAssignOp
23 // Inherits from the Clang class that will allow examining the Clang AST tree (i.e. syntax tree).
24 : public FilteringPlugin< CascadingAssignOp >
26 public:
27 CascadingAssignOp( const InstantiationData& data );
28 virtual void run() override;
29 void Walk( const Stmt* stmt, WalkCounter& c );
30 bool VisitStmt( const Stmt* stmt );
33 } // namespace loplugin
35 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */