summaryrefslogtreecommitdiff
path: root/idlc/source/aststack.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'idlc/source/aststack.cxx')
-rw-r--r--idlc/source/aststack.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/idlc/source/aststack.cxx b/idlc/source/aststack.cxx
index f5a3315e3b24..464879794d53 100644
--- a/idlc/source/aststack.cxx
+++ b/idlc/source/aststack.cxx
@@ -38,7 +38,7 @@ AstStack::~AstStack()
delete m_stack[i];
}
- rtl_freeMemory(m_stack);
+ std::free(m_stack);
}
@@ -97,7 +97,7 @@ AstStack* AstStack::push(AstScope* pScope)
for(i=0; i < m_size; i++)
tmp[i] = m_stack[i];
- rtl_freeMemory(m_stack);
+ std::free(m_stack);
m_stack = tmp;
}