You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The item is erased from std::map so the iterator will be invalid but you are trying to compare the iterator with the end of map, it is better to put the assertion before erasing the items.
The text was updated successfully, but these errors were encountered:
Hi,
Seems closing tabs causes runtime assertion of an invalid iterator here :
chigraph-gui/src/centraltabview.cpp
Line 246 in f66c573
The item is erased from std::map so the iterator will be invalid but you are trying to compare the iterator with the end of map, it is better to put the assertion before erasing the items.
The text was updated successfully, but these errors were encountered: