summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-10-23 22:39:57 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-10-23 22:46:05 +0200
commitf3698af7ccebbe7063226c843fb664f68d84e679 (patch)
tree279cd0306e153bb956fe4d53cebdf0baa2e2320d /idlc
parent3f2a9e2d71a04f18fa713b5174368ea3af1d348f (diff)
loplugin:includeform: idlc
Change-Id: Ia32beed408de33fbe8ed59ddcab5b01ddc3b8218
Diffstat (limited to 'idlc')
-rw-r--r--idlc/inc/astattribute.hxx2
-rw-r--r--idlc/inc/astbasetype.hxx4
-rw-r--r--idlc/inc/astconstant.hxx4
-rw-r--r--idlc/inc/astconstants.hxx2
-rw-r--r--idlc/inc/astdeclaration.hxx2
-rw-r--r--idlc/inc/astenum.hxx6
-rw-r--r--idlc/inc/astexception.hxx2
-rw-r--r--idlc/inc/astexpression.hxx2
-rw-r--r--idlc/inc/astinterface.hxx4
-rw-r--r--idlc/inc/astinterfacemember.hxx2
-rw-r--r--idlc/inc/astmodule.hxx4
-rw-r--r--idlc/inc/astneeds.hxx2
-rw-r--r--idlc/inc/astobserves.hxx2
-rw-r--r--idlc/inc/astoperation.hxx4
-rw-r--r--idlc/inc/astparameter.hxx2
-rw-r--r--idlc/inc/astscope.hxx6
-rw-r--r--idlc/inc/astsequence.hxx2
-rw-r--r--idlc/inc/astservice.hxx4
-rw-r--r--idlc/inc/astservicemember.hxx2
-rw-r--r--idlc/inc/aststruct.hxx4
-rw-r--r--idlc/inc/asttype.hxx2
-rw-r--r--idlc/inc/asttypedef.hxx2
-rw-r--r--idlc/inc/errorhandler.hxx6
-rw-r--r--idlc/inc/fehelper.hxx4
-rw-r--r--idlc/inc/idlc.hxx6
-rw-r--r--idlc/inc/options.hxx2
-rw-r--r--idlc/source/astdump.cxx2
-rw-r--r--idlc/source/astinterface.cxx2
-rw-r--r--idlc/source/astservice.cxx8
-rw-r--r--idlc/source/aststructinstance.cxx6
-rw-r--r--idlc/source/fehelper.cxx2
-rw-r--r--idlc/source/idlc.cxx10
-rw-r--r--idlc/source/idlcmain.cxx2
-rw-r--r--idlc/source/options.cxx2
34 files changed, 59 insertions, 59 deletions
diff --git a/idlc/inc/astattribute.hxx b/idlc/inc/astattribute.hxx
index 163578a80031..034a3a40d847 100644
--- a/idlc/inc/astattribute.hxx
+++ b/idlc/inc/astattribute.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTATTRIBUTE_HXX
#define INCLUDED_IDLC_INC_ASTATTRIBUTE_HXX
-#include <astdeclaration.hxx>
+#include "astdeclaration.hxx"
#include "astscope.hxx"
#include <registry/types.hxx>
diff --git a/idlc/inc/astbasetype.hxx b/idlc/inc/astbasetype.hxx
index 65c0f4044d26..e276be9f519b 100644
--- a/idlc/inc/astbasetype.hxx
+++ b/idlc/inc/astbasetype.hxx
@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTBASETYPE_HXX
#define INCLUDED_IDLC_INC_ASTBASETYPE_HXX
-#include <asttype.hxx>
-#include <astexpression.hxx>
+#include "asttype.hxx"
+#include "astexpression.hxx"
class AstBaseType : public AstType
diff --git a/idlc/inc/astconstant.hxx b/idlc/inc/astconstant.hxx
index e092b7340ee1..9777bd77d5df 100644
--- a/idlc/inc/astconstant.hxx
+++ b/idlc/inc/astconstant.hxx
@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTCONSTANT_HXX
#define INCLUDED_IDLC_INC_ASTCONSTANT_HXX
-#include <astdeclaration.hxx>
-#include <astexpression.hxx>
+#include "astdeclaration.hxx"
+#include "astexpression.hxx"
namespace typereg { class Writer; }
diff --git a/idlc/inc/astconstants.hxx b/idlc/inc/astconstants.hxx
index 9f787e5b1703..f7a2cc4b19b3 100644
--- a/idlc/inc/astconstants.hxx
+++ b/idlc/inc/astconstants.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTCONSTANTS_HXX
#define INCLUDED_IDLC_INC_ASTCONSTANTS_HXX
-#include <astmodule.hxx>
+#include "astmodule.hxx"
class AstConstants : public AstModule
{
diff --git a/idlc/inc/astdeclaration.hxx b/idlc/inc/astdeclaration.hxx
index 8f4293a97cbf..c723df6afca1 100644
--- a/idlc/inc/astdeclaration.hxx
+++ b/idlc/inc/astdeclaration.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTDECLARATION_HXX
#define INCLUDED_IDLC_INC_ASTDECLARATION_HXX
-#include <idlc.hxx>
+#include "idlc.hxx"
#include <registry/registry.hxx>
class AstScope;
diff --git a/idlc/inc/astenum.hxx b/idlc/inc/astenum.hxx
index 6d6324353ce3..72a90ee7ed6e 100644
--- a/idlc/inc/astenum.hxx
+++ b/idlc/inc/astenum.hxx
@@ -19,9 +19,9 @@
#ifndef INCLUDED_IDLC_INC_ASTENUM_HXX
#define INCLUDED_IDLC_INC_ASTENUM_HXX
-#include <asttype.hxx>
-#include <astscope.hxx>
-#include <astconstant.hxx>
+#include "asttype.hxx"
+#include "astscope.hxx"
+#include "astconstant.hxx"
class AstEnum : public AstType
, public AstScope
diff --git a/idlc/inc/astexception.hxx b/idlc/inc/astexception.hxx
index 12bb642c4004..39b01afe60e6 100644
--- a/idlc/inc/astexception.hxx
+++ b/idlc/inc/astexception.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTEXCEPTION_HXX
#define INCLUDED_IDLC_INC_ASTEXCEPTION_HXX
-#include <aststruct.hxx>
+#include "aststruct.hxx"
class AstException : public AstStruct
{
diff --git a/idlc/inc/astexpression.hxx b/idlc/inc/astexpression.hxx
index d978f321fb0f..53c9ff934556 100644
--- a/idlc/inc/astexpression.hxx
+++ b/idlc/inc/astexpression.hxx
@@ -23,7 +23,7 @@
#include <memory>
-#include <idlc.hxx>
+#include "idlc.hxx"
// Enum to define all the different operators to combine expressions
enum class ExprComb
diff --git a/idlc/inc/astinterface.hxx b/idlc/inc/astinterface.hxx
index 1f789a304b35..b83c79657252 100644
--- a/idlc/inc/astinterface.hxx
+++ b/idlc/inc/astinterface.hxx
@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTINTERFACE_HXX
#define INCLUDED_IDLC_INC_ASTINTERFACE_HXX
-#include <asttype.hxx>
-#include <astscope.hxx>
+#include "asttype.hxx"
+#include "astscope.hxx"
#include "inheritedinterface.hxx"
#include <map>
diff --git a/idlc/inc/astinterfacemember.hxx b/idlc/inc/astinterfacemember.hxx
index 826661fee67e..e421f75af5aa 100644
--- a/idlc/inc/astinterfacemember.hxx
+++ b/idlc/inc/astinterfacemember.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTINTERFACEMEMBER_HXX
#define INCLUDED_IDLC_INC_ASTINTERFACEMEMBER_HXX
-#include <astinterface.hxx>
+#include "astinterface.hxx"
class AstInterfaceMember : public AstDeclaration
{
diff --git a/idlc/inc/astmodule.hxx b/idlc/inc/astmodule.hxx
index da56f8298b2a..df50ac95df5f 100644
--- a/idlc/inc/astmodule.hxx
+++ b/idlc/inc/astmodule.hxx
@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTMODULE_HXX
#define INCLUDED_IDLC_INC_ASTMODULE_HXX
-#include <astdeclaration.hxx>
-#include <astscope.hxx>
+#include "astdeclaration.hxx"
+#include "astscope.hxx"
class AstModule : public AstDeclaration
, public AstScope
diff --git a/idlc/inc/astneeds.hxx b/idlc/inc/astneeds.hxx
index 6b456b9da65f..774369a03ff5 100644
--- a/idlc/inc/astneeds.hxx
+++ b/idlc/inc/astneeds.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTNEEDS_HXX
#define INCLUDED_IDLC_INC_ASTNEEDS_HXX
-#include <astservice.hxx>
+#include "astservice.hxx"
class AstNeeds : public AstDeclaration
{
diff --git a/idlc/inc/astobserves.hxx b/idlc/inc/astobserves.hxx
index b779a7b81fbe..0607dc113b13 100644
--- a/idlc/inc/astobserves.hxx
+++ b/idlc/inc/astobserves.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTOBSERVES_HXX
#define INCLUDED_IDLC_INC_ASTOBSERVES_HXX
-#include <astinterface.hxx>
+#include "astinterface.hxx"
class AstObserves : public AstDeclaration
{
diff --git a/idlc/inc/astoperation.hxx b/idlc/inc/astoperation.hxx
index 45b3faad1a7b..ced2fb32213a 100644
--- a/idlc/inc/astoperation.hxx
+++ b/idlc/inc/astoperation.hxx
@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTOPERATION_HXX
#define INCLUDED_IDLC_INC_ASTOPERATION_HXX
-#include <astdeclaration.hxx>
-#include <astscope.hxx>
+#include "astdeclaration.hxx"
+#include "astscope.hxx"
namespace typereg { class Writer; }
diff --git a/idlc/inc/astparameter.hxx b/idlc/inc/astparameter.hxx
index f50f021c6429..72fdf9425d6a 100644
--- a/idlc/inc/astparameter.hxx
+++ b/idlc/inc/astparameter.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_IDLC_INC_ASTPARAMETER_HXX
#define INCLUDED_IDLC_INC_ASTPARAMETER_HXX
-#include <astmember.hxx>
+#include "astmember.hxx"
enum Direction { DIR_IN, DIR_OUT, DIR_INOUT };
diff --git a/idlc/inc/astscope.hxx b/idlc/inc/astscope.hxx
index 30a0f837c0dc..af3d4d68781b 100644
--- a/idlc/inc/astscope.hxx
+++ b/idlc/inc/astscope.hxx
@@ -19,11 +19,11 @@
#ifndef INCLUDED_IDLC_INC_ASTSCOPE_HXX
#define INCLUDED_IDLC_INC_ASTSCOPE_HXX
-#include <idlc.hxx>
+#include "idlc.hxx"
class AstExpression;
-#include <astdeclaration.hxx>
-#include <astexpression.hxx>
+#include "astdeclaration.hxx"
+#include "astexpression.hxx"
class AstScope
{
diff --git a/idlc/inc/astsequence.hxx b/idlc/inc/astsequence.hxx
index aa800ca9e052..20dac9b4fdc0 100644
--- a/idlc/inc/astsequence.hxx
+++ b/idlc/inc/astsequence.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTSEQUENCE_HXX
#define INCLUDED_IDLC_INC_ASTSEQUENCE_HXX
-#include <asttype.hxx>
+#include "asttype.hxx"
class AstSequence : public AstType
{
diff --git a/idlc/inc/astservice.hxx b/idlc/inc/astservice.hxx
index 4747005cc24b..6bdcebb01768 100644
--- a/idlc/inc/astservice.hxx
+++ b/idlc/inc/astservice.hxx
@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTSERVICE_HXX
#define INCLUDED_IDLC_INC_ASTSERVICE_HXX
-#include <astdeclaration.hxx>
-#include <astscope.hxx>
+#include "astdeclaration.hxx"
+#include "astscope.hxx"
class AstService : public AstDeclaration
, public AstScope
diff --git a/idlc/inc/astservicemember.hxx b/idlc/inc/astservicemember.hxx
index d23cda303cc8..e4c272545172 100644
--- a/idlc/inc/astservicemember.hxx
+++ b/idlc/inc/astservicemember.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTSERVICEMEMBER_HXX
#define INCLUDED_IDLC_INC_ASTSERVICEMEMBER_HXX
-#include <astservice.hxx>
+#include "astservice.hxx"
class AstServiceMember : public AstDeclaration
{
diff --git a/idlc/inc/aststruct.hxx b/idlc/inc/aststruct.hxx
index 083cd30018f1..52981cf2b791 100644
--- a/idlc/inc/aststruct.hxx
+++ b/idlc/inc/aststruct.hxx
@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_ASTSTRUCT_HXX
#define INCLUDED_IDLC_INC_ASTSTRUCT_HXX
-#include <asttype.hxx>
-#include <astscope.hxx>
+#include "asttype.hxx"
+#include "astscope.hxx"
#include "idlctypes.hxx"
class AstStruct;
diff --git a/idlc/inc/asttype.hxx b/idlc/inc/asttype.hxx
index 89c16f73ba07..7c173197ef8e 100644
--- a/idlc/inc/asttype.hxx
+++ b/idlc/inc/asttype.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTTYPE_HXX
#define INCLUDED_IDLC_INC_ASTTYPE_HXX
-#include <astdeclaration.hxx>
+#include "astdeclaration.hxx"
class AstType : public AstDeclaration
{
diff --git a/idlc/inc/asttypedef.hxx b/idlc/inc/asttypedef.hxx
index 3b097cc136af..6271893b87c0 100644
--- a/idlc/inc/asttypedef.hxx
+++ b/idlc/inc/asttypedef.hxx
@@ -19,7 +19,7 @@
#ifndef INCLUDED_IDLC_INC_ASTTYPEDEF_HXX
#define INCLUDED_IDLC_INC_ASTTYPEDEF_HXX
-#include <asttype.hxx>
+#include "asttype.hxx"
class AstTypeDef : public AstType
{
diff --git a/idlc/inc/errorhandler.hxx b/idlc/inc/errorhandler.hxx
index b2d8b94d8c5c..a1e1a8729ba4 100644
--- a/idlc/inc/errorhandler.hxx
+++ b/idlc/inc/errorhandler.hxx
@@ -19,9 +19,9 @@
#ifndef INCLUDED_IDLC_INC_ERRORHANDLER_HXX
#define INCLUDED_IDLC_INC_ERRORHANDLER_HXX
-#include <astdeclaration.hxx>
-#include <astexpression.hxx>
-#include <astenum.hxx>
+#include "astdeclaration.hxx"
+#include "astexpression.hxx"
+#include "astenum.hxx"
enum class ErrorCode
{
diff --git a/idlc/inc/fehelper.hxx b/idlc/inc/fehelper.hxx
index d66818dd22ca..11668e6946be 100644
--- a/idlc/inc/fehelper.hxx
+++ b/idlc/inc/fehelper.hxx
@@ -19,8 +19,8 @@
#ifndef INCLUDED_IDLC_INC_FEHELPER_HXX
#define INCLUDED_IDLC_INC_FEHELPER_HXX
-#include <asttype.hxx>
-#include <astinterface.hxx>
+#include "asttype.hxx"
+#include "astinterface.hxx"
#include <vector>
diff --git a/idlc/inc/idlc.hxx b/idlc/inc/idlc.hxx
index 83807665e68e..99efb291b1f0 100644
--- a/idlc/inc/idlc.hxx
+++ b/idlc/inc/idlc.hxx
@@ -19,9 +19,9 @@
#ifndef INCLUDED_IDLC_INC_IDLC_HXX
#define INCLUDED_IDLC_INC_IDLC_HXX
-#include <idlctypes.hxx>
-#include <aststack.hxx>
-#include <options.hxx>
+#include "idlctypes.hxx"
+#include "aststack.hxx"
+#include "options.hxx"
#ifdef SAL_UNX
#define SEPARATOR '/'
diff --git a/idlc/inc/options.hxx b/idlc/inc/options.hxx
index b97f3a42b84b..b3a791bcb1c5 100644
--- a/idlc/inc/options.hxx
+++ b/idlc/inc/options.hxx
@@ -20,7 +20,7 @@
#ifndef INCLUDED_IDLC_INC_OPTIONS_HXX
#define INCLUDED_IDLC_INC_OPTIONS_HXX
-#include <idlctypes.hxx>
+#include "idlctypes.hxx"
typedef std::unordered_map< OString, OString > OptionMap;
diff --git a/idlc/source/astdump.cxx b/idlc/source/astdump.cxx
index 75e28ea7d789..945060bce392 100644
--- a/idlc/source/astdump.cxx
+++ b/idlc/source/astdump.cxx
@@ -27,7 +27,7 @@
#include <astobserves.hxx>
#include <astneeds.hxx>
#include <astsequence.hxx>
-#include "astoperation.hxx"
+#include <astoperation.hxx>
#include <osl/diagnose.h>
diff --git a/idlc/source/astinterface.cxx b/idlc/source/astinterface.cxx
index e8dd63b12b1c..c013fc009ebd 100644
--- a/idlc/source/astinterface.cxx
+++ b/idlc/source/astinterface.cxx
@@ -20,7 +20,7 @@
#include <astinterface.hxx>
#include <astattribute.hxx>
#include <astoperation.hxx>
-#include "idlc.hxx"
+#include <idlc.hxx>
#include <registry/version.h>
#include <registry/writer.hxx>
diff --git a/idlc/source/astservice.cxx b/idlc/source/astservice.cxx
index 83cb3fbd35c9..f92aa6ab94c4 100644
--- a/idlc/source/astservice.cxx
+++ b/idlc/source/astservice.cxx
@@ -20,10 +20,10 @@
#include <sal/config.h>
-#include "astmember.hxx"
-#include "astoperation.hxx"
-#include "astservice.hxx"
-#include "asttype.hxx"
+#include <astmember.hxx>
+#include <astoperation.hxx>
+#include <astservice.hxx>
+#include <asttype.hxx>
bool AstService::checkLastConstructor() const {
AstOperation const * last = static_cast< AstOperation const * >(getLast());
diff --git a/idlc/source/aststructinstance.cxx b/idlc/source/aststructinstance.cxx
index 0c18d7273901..e7723d19bd2d 100644
--- a/idlc/source/aststructinstance.cxx
+++ b/idlc/source/aststructinstance.cxx
@@ -18,10 +18,10 @@
*/
-#include "aststructinstance.hxx"
+#include <aststructinstance.hxx>
-#include "asttype.hxx"
-#include "idlctypes.hxx"
+#include <asttype.hxx>
+#include <idlctypes.hxx>
#include <rtl/strbuf.hxx>
#include <rtl/string.hxx>
diff --git a/idlc/source/fehelper.cxx b/idlc/source/fehelper.cxx
index 168cf56fec7f..02f0e8b4799c 100644
--- a/idlc/source/fehelper.cxx
+++ b/idlc/source/fehelper.cxx
@@ -19,7 +19,7 @@
#include <fehelper.hxx>
#include <errorhandler.hxx>
-#include "idlc.hxx"
+#include <idlc.hxx>
FeDeclarator::FeDeclarator(const OString& name)
: m_name(name)
diff --git a/idlc/source/idlc.cxx b/idlc/source/idlc.cxx
index 2d2a94a2d14e..c7042d7a87ba 100644
--- a/idlc/source/idlc.cxx
+++ b/idlc/source/idlc.cxx
@@ -28,11 +28,11 @@
#include <astinterface.hxx>
#include <astoperation.hxx>
#include <astbasetype.hxx>
-#include "astdeclaration.hxx"
-#include "astparameter.hxx"
-#include "astsequence.hxx"
-#include "asttype.hxx"
-#include "asttypedef.hxx"
+#include <astdeclaration.hxx>
+#include <astparameter.hxx>
+#include <astsequence.hxx>
+#include <asttype.hxx>
+#include <asttypedef.hxx>
#include <osl/diagnose.h>
#include <osl/file.hxx>
diff --git a/idlc/source/idlcmain.cxx b/idlc/source/idlcmain.cxx
index 038d0a0769d4..27b06f4b8949 100644
--- a/idlc/source/idlcmain.cxx
+++ b/idlc/source/idlcmain.cxx
@@ -18,7 +18,7 @@
*/
-#include "idlc.hxx"
+#include <idlc.hxx>
#include <sal/main.h>
#include <string.h>
diff --git a/idlc/source/options.cxx b/idlc/source/options.cxx
index 92dcb6dbf783..a188cf5d765b 100644
--- a/idlc/source/options.cxx
+++ b/idlc/source/options.cxx
@@ -18,7 +18,7 @@
*/
-#include "options.hxx"
+#include <options.hxx>
#include <osl/diagnose.h>
#include <rtl/string.hxx>