summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
Diffstat (limited to 'idlc')
-rw-r--r--idlc/inc/astexpression.hxx2
-rw-r--r--idlc/source/astexpression.cxx2
2 files changed, 0 insertions, 4 deletions
diff --git a/idlc/inc/astexpression.hxx b/idlc/inc/astexpression.hxx
index 788d7a2afc6c..955ffa49a233 100644
--- a/idlc/inc/astexpression.hxx
+++ b/idlc/inc/astexpression.hxx
@@ -124,8 +124,6 @@ private:
std::unique_ptr<AstExprValue> eval_un_op();
AstExprValue* eval_symbol();
- AstScope* m_pScope; // scope defined in
- sal_Int32 m_lineNo; // line number defined in
OString m_fileName; // fileName defined in
ExprComb m_combOperator;
diff --git a/idlc/source/astexpression.cxx b/idlc/source/astexpression.cxx
index 5d5e6133d96c..8615c7962f7e 100644
--- a/idlc/source/astexpression.cxx
+++ b/idlc/source/astexpression.cxx
@@ -784,8 +784,6 @@ bool AstExpression::compareLong(AstExpression *pExpr)
void AstExpression::fillDefinitionDetails()
{
- m_pScope = idlc()->scopes()->depth() > 0 ? idlc()->scopes()->top() : nullptr;
- m_lineNo = idlc()->getLineNumber();
m_fileName = idlc()->getFileName();
}