You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-cpp/glibmm/files/glibmm-2.46.2-use-noexcept2...

16 lines
555 B

Gio::Application: Destructor: Use noexcept in the implementation too.
Bug #566426 (https://bugs.gentoo.org/show_bug.cgi?id=566426)
--- a/gio/giomm/application.cc 2015-09-22 11:13:25.000000000 +0200
+++ b/gio/giomm/application.cc 2015-12-08 21:54:44.914338546 +0100
@@ -284,7 +284,7 @@ Application::Application(const Glib::ust
}
-Application::~Application()
+Application::~Application() noexcept
{
// Delete all OptionArgCallbackData instances that belong to this application.
Glib::Threads::Mutex::Lock lock(option_arg_callback_data_mutex);