#538 more dtor fixes and some style fixes along the way

This commit is contained in:
Günter Obiltschnig
2014-09-29 12:09:01 +02:00
parent 135c10c0f5
commit a2617235fe
10 changed files with 68 additions and 37 deletions

View File

@@ -39,7 +39,14 @@ Cursor::Cursor(const std::string& fullCollectionName, QueryRequest::Flags flags)
Cursor::~Cursor()
{
poco_assert_dbg(!_response.cursorID());
try
{
poco_assert_dbg(!_response.cursorID());
}
catch (...)
{
}
}