loplugin:unusedfields idl,idlc

Change-Id: I39816fc613aadb5250eed39fd0c6830abe1cde2c
This commit is contained in:
Noel Grandin 2015-11-20 14:54:04 +02:00
parent 60e61e4434
commit 2e1d74dc4f
2 changed files with 2 additions and 5 deletions

View File

@ -26,10 +26,8 @@
struct SvNamePos struct SvNamePos
{ {
SvGlobalName aUUId; SvGlobalName aUUId;
sal_uInt32 nStmPos; SvNamePos( const SvGlobalName & rName )
SvNamePos( const SvGlobalName & rName, sal_uInt32 nPos ) : aUUId( rName ) {}
: aUUId( rName )
, nStmPos( nPos ) {}
}; };
class SvMetaModule : public SvMetaExtern class SvMetaModule : public SvMetaExtern

View File

@ -81,7 +81,6 @@ struct AstExprValue
bool bval; // Contains boolean expression value bool bval; // Contains boolean expression value
float fval; // Contains 32-bit float expr value float fval; // Contains 32-bit float expr value
double dval; // Contains 64-bit float expr value double dval; // Contains 64-bit float expr value
sal_uInt32 eval; // Contains enumeration value
} u; } u;
ExprType et; ExprType et;
}; };