summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-12-23 16:41:52 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-12-24 07:28:28 +0000
commite3a31fcca771432a38e4c2e7cc4c4c6c1c157ee9 (patch)
tree0de9af64a417624e779a6080825d50f55e448119 /idlc
parent4dfba3b59021f55957fc486531f8fdc67cc307b0 (diff)
loplugin:unusedfields
Change-Id: I979592adb978c3757a1e54615021ee424a2e02bf Reviewed-on: https://gerrit.libreoffice.org/20892 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'idlc')
-rw-r--r--idlc/inc/idlc/astdeclaration.hxx1
-rw-r--r--idlc/source/astdeclaration.cxx1
2 files changed, 0 insertions, 2 deletions
diff --git a/idlc/inc/idlc/astdeclaration.hxx b/idlc/inc/idlc/astdeclaration.hxx
index 12f2ee6aa4fc..6b329e961a7c 100644
--- a/idlc/inc/idlc/astdeclaration.hxx
+++ b/idlc/inc/idlc/astdeclaration.hxx
@@ -119,7 +119,6 @@ protected:
AstScope* m_pScope;
NodeType m_nodeType;
bool m_bImported; // imported ?
- bool m_bIsAdded; // mark declaration as added in scope
bool m_bInMainFile; // defined in main file
bool m_bPublished;
bool m_bPredefined;
diff --git a/idlc/source/astdeclaration.cxx b/idlc/source/astdeclaration.cxx
index b9e11db7b6a2..fa889f96ab33 100644
--- a/idlc/source/astdeclaration.cxx
+++ b/idlc/source/astdeclaration.cxx
@@ -45,7 +45,6 @@ AstDeclaration::AstDeclaration(NodeType type, const OString& name, AstScope* pSc
, m_pScope(pScope)
, m_nodeType(type)
, m_bImported(false)
- , m_bIsAdded(false)
, m_bInMainFile(false)
, m_bPredefined(false)
, m_lineNumber(0)