Add comment about asan warnings.

pull/1025/head
Ryan Pavlik 2021-04-21 09:57:49 -05:00 committed by phkahler
parent 0e0b0252e2
commit 8a4d84e85e
1 changed files with 4 additions and 0 deletions

View File

@ -222,6 +222,10 @@ public:
} }
return false; return false;
}; };
// Note: asan warnings about new-delete-type-mismatch are false positives here:
// https://gitlab.gnome.org/GNOME/gtkmm/-/issues/65
// Pass new_delete_type_mismatch=0 to ASAN_OPTIONS to disable those warnings.
// Unfortunately they won't go away until upgrading to gtkmm4
_connection = Glib::signal_timeout().connect(handler, milliseconds); _connection = Glib::signal_timeout().connect(handler, milliseconds);
} }
}; };