diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-10-23 22:39:57 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-10-23 22:46:05 +0200 |
commit | f3698af7ccebbe7063226c843fb664f68d84e679 (patch) | |
tree | 279cd0306e153bb956fe4d53cebdf0baa2e2320d /idlc/inc | |
parent | 3f2a9e2d71a04f18fa713b5174368ea3af1d348f (diff) |
loplugin:includeform: idlc
Change-Id: Ia32beed408de33fbe8ed59ddcab5b01ddc3b8218
Diffstat (limited to 'idlc/inc')
-rw-r--r-- | idlc/inc/astattribute.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/astbasetype.hxx | 4 | ||||
-rw-r--r-- | idlc/inc/astconstant.hxx | 4 | ||||
-rw-r--r-- | idlc/inc/astconstants.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/astdeclaration.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/astenum.hxx | 6 | ||||
-rw-r--r-- | idlc/inc/astexception.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/astexpression.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/astinterface.hxx | 4 | ||||
-rw-r--r-- | idlc/inc/astinterfacemember.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/astmodule.hxx | 4 | ||||
-rw-r--r-- | idlc/inc/astneeds.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/astobserves.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/astoperation.hxx | 4 | ||||
-rw-r--r-- | idlc/inc/astparameter.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/astscope.hxx | 6 | ||||
-rw-r--r-- | idlc/inc/astsequence.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/astservice.hxx | 4 | ||||
-rw-r--r-- | idlc/inc/astservicemember.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/aststruct.hxx | 4 | ||||
-rw-r--r-- | idlc/inc/asttype.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/asttypedef.hxx | 2 | ||||
-rw-r--r-- | idlc/inc/errorhandler.hxx | 6 | ||||
-rw-r--r-- | idlc/inc/fehelper.hxx | 4 | ||||
-rw-r--r-- | idlc/inc/idlc.hxx | 6 | ||||
-rw-r--r-- | idlc/inc/options.hxx | 2 |
26 files changed, 42 insertions, 42 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; |