Fix check for empty stack

Regression introduced with ecfcc54543 "Replace
Stack with std::stack< std::pair< XclObj*, XclEscherHostAppData* > >"

Change-Id: Ib4776a2df3c2f9648f2e1af70c7d20485a7ff888
This commit is contained in:
Stephan Bergmann
2015-09-28 23:16:06 +02:00
parent fac7d76d44
commit 7aec3935c0

View File

@@ -109,7 +109,7 @@ XclEscherEx::XclEscherEx( const XclExpRoot& rRoot, XclExpObjectManager& rObjMgr,
XclEscherEx::~XclEscherEx()
{
OSL_ENSURE( !aStack.empty(), "~XclEscherEx: stack not empty" );
OSL_ENSURE( aStack.empty(), "~XclEscherEx: stack not empty" );
DeleteCurrAppData();
delete pTheClientData;
}