1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
7 * This file is distributed under the University of Illinois Open Source
8 * License. See LICENSE.TXT for details.
23 : public RecursiveASTVisitor
< SalLogAreas
>
27 explicit SalLogAreas( const InstantiationData
& data
);
28 virtual void run() override
;
29 bool VisitFunctionDecl( const FunctionDecl
* function
);
30 bool VisitCallExpr( const CallExpr
* call
);
32 void checkArea( StringRef area
, SourceLocation location
);
33 void checkAreaSyntax(StringRef area
, SourceLocation location
);
35 const FunctionDecl
* inFunction
;
36 SourceLocation lastSalDetailLogStreamMacro
;
37 std::set
< std::string
> logAreas
;
39 std::string firstSeenLogArea
;
40 SourceLocation firstSeenLocation
;
46 #endif // SALLOGAREAS_H
48 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */