On 17/11/2015 15:54, Kjell Ahlstedt
wrote:
RefPtr is proving tricky to debug into (maybe because it's a template - and inline?) However while trying it, I discovered something slightly more worrying. Even this fails when GTKMM_ATKMM_ENABLED is #defined:- int main (int argc, char *argv[]) { Gtk::Main *app = new Gtk::Main (&argc, &argv); Gtk::Window *mainWnd = new Gtk::Window; delete mainWnd; // <-- hangs here !! delete app; return 0; } codekiddy - can you try the above example and let us know if you also see a hang at that line? Tomorrow I'll try rebuilding (this time with GTKMM_ATKMM_ENABLED #undef'd) just to confirm that it doesn't then fail. John |