From c7330041fb9739bfb7268f44ab017946c6db6562 Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Wed, 18 Jan 2023 15:49:51 +0100 Subject: [PATCH] Remove unmatched DebugSession::close() in RawGCellsUnder. --- anabatic/src/AnabaticEngine.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/anabatic/src/AnabaticEngine.cpp b/anabatic/src/AnabaticEngine.cpp index df7d7b74..004e9509 100644 --- a/anabatic/src/AnabaticEngine.cpp +++ b/anabatic/src/AnabaticEngine.cpp @@ -244,7 +244,6 @@ namespace Anabatic { cerr << Error( "RawGCellsUnder::commonCtor(): Points are neither horizontally nor vertically aligneds (ignored)." ) << endl; cdebug_tabw(112,-1); - DebugSession::close(); return; } @@ -262,7 +261,6 @@ namespace Anabatic { , DbU::getValueString(target.getY()).c_str() ) << endl; cdebug_tabw(112,-1); - DebugSession::close(); return; } @@ -281,21 +279,18 @@ namespace Anabatic { cerr << Bug( "RawGCellsUnder::RawGCellsUnder(): Source not under a GCell (ignored)." ) << endl; cdebug_tabw(112,-1); - DebugSession::close(); return; } if (not gtarget) { cerr << Bug( "RawGCellsUnder::RawGCellsUnder(): Target not under a GCell (ignored)." ) << endl; cdebug_tabw(112,-1); - DebugSession::close(); return; } if (gsource == gtarget) { _elements.push_back( Element(gsource,NULL) ); cdebug_tabw(112,-1); - DebugSession::close(); return; }