From 2e1d74dc4fb4590fd7ded360457ad867a9002e94 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 20 Nov 2015 14:54:04 +0200 Subject: [PATCH] loplugin:unusedfields idl,idlc Change-Id: I39816fc613aadb5250eed39fd0c6830abe1cde2c --- idl/inc/module.hxx | 6 ++---- idlc/inc/idlc/astexpression.hxx | 1 - 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/idl/inc/module.hxx b/idl/inc/module.hxx index 12b4b4af17b4..b8dfa9d08016 100644 --- a/idl/inc/module.hxx +++ b/idl/inc/module.hxx @@ -26,10 +26,8 @@ struct SvNamePos { SvGlobalName aUUId; - sal_uInt32 nStmPos; - SvNamePos( const SvGlobalName & rName, sal_uInt32 nPos ) - : aUUId( rName ) - , nStmPos( nPos ) {} + SvNamePos( const SvGlobalName & rName ) + : aUUId( rName ) {} }; class SvMetaModule : public SvMetaExtern diff --git a/idlc/inc/idlc/astexpression.hxx b/idlc/inc/idlc/astexpression.hxx index 6723297e2551..83fa6d70dd6d 100644 --- a/idlc/inc/idlc/astexpression.hxx +++ b/idlc/inc/idlc/astexpression.hxx @@ -81,7 +81,6 @@ struct AstExprValue bool bval; // Contains boolean expression value float fval; // Contains 32-bit float expr value double dval; // Contains 64-bit float expr value - sal_uInt32 eval; // Contains enumeration value } u; ExprType et; };